I am primarily interested in string keys. Can someone point me towards a library?
-A
|
2
|
I am primarily interested in string keys. Can someone point me towards a library? -A
|
||
|
|
|
|
For strings, the Judy Array might be good.
Here is a Judy library in C.
Other references, |
|||
|
|
|
|
Never used it but Google Sparsehash may work |
||||||||
|
|
|
http://www.cl.cam.ac.uk/~cwc22/hashtable/ Defined functions
Example of use
|
||
|
|
|
|
There are some good answers here: http://sglib.sourceforge.net.
|
||
|
|
|
|
Download tcl and use their time-proven tcl hash function. It's easy. The TCL API is well documented. |
||
|
|
|
|
C Interfaces and Implementations discusses hash table implementations in C. The source code is available online. (My copy of the book is at work so I can't be more specific.) |
||
|
|
|
|
GLib is a great library to use as a foundation in your C projects. They have some decent data structure offerings including Hash Tables: http://library.gnome.org/devel/glib/2.21/glib-Hash-Tables.html |
||
|
|
|
Gperf - Perfect Hash Function Generator http://www.ibm.com/developerworks/linux/library/l-gperf.html |
||
|
|
|
|
Dave Hanson's C Interfaces and Implementations includes a fine hash table and several other well-engineered data structures. There is also a nice string-processing interface. The book is great if you can afford it, but even if not, I have found this software very well designed, small enough to learn in its entirety, and easy to reuse in several different projects. |
||
|
|