An open API service indexing awesome lists of open source software.

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

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)