I am primarily interested in string keys. Can someone point me towards a library?
-A
|
feedback
|
|
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://developer.gnome.org/glib/2.28/glib-Hash-Tables.html (link updated 4/6/2011) | |||||
feedback
|
|
For strings, the Judy Array might be good.
Here is a Judy library in C.
Other references, | ||||
|
feedback
|
|
There are some good answers here: http://sglib.sourceforge.net.
| |||
|
feedback
|
|
Never used it but Google Sparsehash may work | |||||||||
feedback
|
|
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. | |||
|
feedback
|
|
A long time has passed since I asked this question... I can now add my own public domain library to the list: | |||
|
feedback
|
|
http://www.cl.cam.ac.uk/~cwc22/hashtable/ Defined functions
Example of use
| |||
|
feedback
|
|
Download tcl and use their time-proven tcl hash function. It's easy. The TCL API is well documented. | |||
|
feedback
|
|
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.) | |||
|
feedback
|
|
Gperf - Perfect Hash Function Generator http://www.ibm.com/developerworks/linux/library/l-gperf.html | |||
|
feedback
|
|
stl has map and hash_map (hash_map is only in some implementations) that are key to value. | |||
|
feedback
|
|
I had the same need and did some research and ended up using libcfu It's simple and readable so if I have a need to modify, I can do it without spending too much time to understand. It's also of BSD license. No need to change my structs (to embed say a next pointer) I had to reject the other options for following reasons (my personal reasons, YMMV):
In summary for very simple use strmap is good; uthash if you are concerned with additional memory use. If just speed of development or ease of use is primary objective, libcfu wins [note libcfu internally does memory allocation to maintain the nodes/hashtables]. It's surprising that there aren't many simple C hash implementations available. | |||
feedback
|