Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shysaur/shysaur-hashtable
A hashtable.
https://github.com/shysaur/shysaur-hashtable
c hashtable library
Last synced: about 2 months ago
JSON representation
A hashtable.
- Host: GitHub
- URL: https://github.com/shysaur/shysaur-hashtable
- Owner: shysaur
- License: mit
- Created: 2015-09-29T22:11:08.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-20T16:32:11.000Z (about 9 years ago)
- Last Synced: 2023-02-27T19:55:44.288Z (almost 2 years ago)
- Topics: c, hashtable, library
- Language: C
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hashtable
This is a simple implementation of a separate chaining with list head cells and
fast enumeration [hash table](https://en.wikipedia.org/wiki/Hash_table), with
an option for incremental resizing.The hashtable is self contained in [hashtable.c](hashtable.c) and
[hashtable.h](hashtable.h). Other files are just test programs.