https://github.com/nicolasff/ht
A simple hash table with non-blocking resize
https://github.com/nicolasff/ht
Last synced: 9 months ago
JSON representation
A simple hash table with non-blocking resize
- Host: GitHub
- URL: https://github.com/nicolasff/ht
- Owner: nicolasff
- Created: 2010-07-11T23:08:19.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2010-08-15T15:21:34.000Z (almost 16 years ago)
- Last Synced: 2025-01-31T10:36:06.565Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 89.8 KB
- Stars: 10
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Description
`ht` is a very simple Hash Table library written in C.
### Features
* String hashing only.
* Optional redefinition of the key hash function (“[djb2](http://www.cse.yorku.ca/~oz/hash.html)” by default).
* Store any data (`void*`).
* Non-blocking resize.
* Optional key alloc/free functions. If none are specified, the key is **not** copied.
Multi-threading support will not be added.