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.
|
3
|
|||||||
|
|
|
AT&T's software tools. |
||
|
|
|
|
SGLIB is a excelent generic data structures library. The library currently provides generic implementation for: 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: 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 |
|||
|
|
|
BSD queue.h has:
BSD tree.h has:
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. |
||
|
|
|
|
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."
|
|||
|
|
|
|
Gnome provides an excellent library for this, called Glib, with many useful data structures and other utilities as well. |
||
|
|
