https://github.com/exbotanical/libhash
Collision-free hash tables for the C programming language
https://github.com/exbotanical/libhash
double-hashing hashtable
Last synced: 12 days ago
JSON representation
Collision-free hash tables for the C programming language
- Host: GitHub
- URL: https://github.com/exbotanical/libhash
- Owner: exbotanical
- License: mit
- Created: 2021-11-15T01:00:38.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-15T09:01:55.000Z (3 months ago)
- Last Synced: 2025-03-25T02:51:42.658Z (30 days ago)
- Topics: double-hashing, hashtable
- Language: C
- Homepage:
- Size: 108 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# libhash
* Collision-free hash tables and hash sets for C.
* Implemented as open-addressed and double-hashed.
* Extremely simple and easy-to-use API.
* For documentation, see the header file [here](include/libhash.h).
* For best performance, initialize with a prime number.
* For examples, see [examples](examples/main.c)