Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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.