vote up 10 vote down star
5

What are good libraries for C with datastructures like vectors, deques, stacks, hashmaps, treemaps, sets, etc.? Plain C, please, and platform-independent.

flag

78% accept rate
Duplicate of stackoverflow.com/questions/668501/… – Emil H Jun 30 at 3:28

5 Answers

vote up 18 vote down check

The Glib library used on the Gnome project may also be some use. Moreover it is pretty well tested.

IBM developer works has a two part tutorial on its use: The wonders of GLib, Part 1, Part 2

link|flag
vote up 0 vote down

If hash tables, extensible strings and dynamic vector are enough for your needs, please have a look at the library I put toghether: http://code.google.com/p/c-libutl/.

I also would welcome any feedback!

link|flag
vote up 2 vote down

Maybe http://sglib.sourceforge.net/ if you want an easy to use, very fast, macro based library.

link|flag
vote up 1 vote down

There's some stuff in the Apache Portable Runtime (APR) that I'd expect to be very solid.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.