vote up 9 vote down star
3

I'm looking for a C library with common reusable data structures like linked lists, hash tables etc. Something like the source distributed with Mastering Algorithms with C (Paperback) by Kyle Loudon.

flag

47% accept rate
this.book = "Mastering Algorithms with C (Paperback) by Kyle Loudon"; – Martlark Mar 21 at 1:12
thanx, corrected. – Vasil Mar 21 at 1:27
See stackoverflow.com/questions/649649/… – qrdl Mar 21 at 5:43

5 Answers

vote up 0 vote down

AT&T's software tools.

link|flag
vote up 4 vote down

SGLIB is a excelent generic data structures library. The library currently provides generic implementation for:
sorting arrays
linked lists
sorted linked lists
double linked lists
red-black trees
hashed containers

It's very fast. More fastest that glib. It's inspired by the Standard Template Library. Download Here

Another solution is Attractive Chaos sotware. C macro library:
kbtree.h: efficient B-tree library in C.
khash.h: fast and light-weighted hash table library in C.
kvec.h: simple vector container in C.

Sglib and Attractive Chaos sotware are C macros library. Using void* to implement generic containers in C may be inefficient. C macros mimics C++ template and are as efficient as C++ template

link|flag
Nice pointers - I'd never heard of SGLIB before. – Michael Burr Aug 26 at 19:11
vote up 6 vote down

BSD queue.h has:

  • SLIST = singly linked list
  • LIST = doubly linked list
  • SIMPLEQ = singly linked queue
  • TAILQ = doubly linked queue

BSD tree.h has:

  • RB - red-black tree
  • SPLAY - splay tree

See the queue(3) and tree(3) man pages for details. I really like them because they are pure C macros without dependencies (not even libc). Plus with the BSD license you don't have to worry about any company restrictions w/ GPL.

link|flag
vote up 8 vote down

gnulib, the gnu portability library.

It's distributed as source code. This list is from its module list, which includes a TON of other things. One interesting one is "c-stack: Stack overflow handling, causing program exit."

  • list
  • array-list
  • carray-list
  • linked-list
  • avltree-list
  • rbtree-list
  • linkedhash-list
  • avltreehash-list
  • rbtreehash-list
  • sublist ( Sequential list data type backed by another list. )
  • oset (Abstract ordered set.)
  • array-oset
  • avltree-oset
  • rbtree-oset
link|flag
vote up 13 vote down

Gnome provides an excellent library for this, called Glib, with many useful data structures and other utilities as well.

link|flag

Your Answer

Get an OpenID
or

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