Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
Duplicate of stackoverflow.com/questions/668501/… – Emil H Jun 30 '09 at 3:28

5 Answers

up vote 30 down vote accepted

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

IBM developer works has a good tutorial on its use: Manage C data using the GLib collections

share|improve this answer

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

share|improve this answer

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

share|improve this answer

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!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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