Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 313 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 313 Bytes

A Simple Hashtable in C

  • Linked-list based chaining for dealing with collisions.
  • Murmur as the internal hashing mechanism (good performance, good collision stats).
  • BSD 2-clause license.

For a pretty straightforward example of how to use, see main.c.

All dependencies are included.