https://github.com/adrian-bueno/hashtable
Linked Hash Table written in C. Key and value can be of any type.
https://github.com/adrian-bueno/hashtable
c hashtable linked-hashtable
Last synced: 10 months ago
JSON representation
Linked Hash Table written in C. Key and value can be of any type.
- Host: GitHub
- URL: https://github.com/adrian-bueno/hashtable
- Owner: adrian-bueno
- License: mit
- Created: 2015-10-12T15:19:40.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-12T20:14:00.000Z (about 9 years ago)
- Last Synced: 2025-06-26T04:35:38.608Z (about 1 year ago)
- Topics: c, hashtable, linked-hashtable
- Language: C
- Homepage:
- Size: 8.79 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## README ##
Linked Hash Table written in C.
Key and value can be of any type.
Easy to use.
No dependecys.
3 examples of use in "examples" folder.
MIT License.
### Functions ###
Create hash table.
Delete hash table.
Introduce new key-value or modify value.
Get the value associated to a key.
Delete key-value.
Calculate hash value of a string.
Function pointers used to: compare keys, calculate hash value of keys and free allocated memory of keys and values.
** Check hashtable.h for more details.