StructPie
A set of C libraries to implement data structures and algorithms
Struct-Pie (Structures Pie) is a set of C shared libraries to implement data structures and algorithms so that they can be used/integrated easily into C projects.
LIFO & FIFO Stack, Binary Search Tree, Priority Queue and a Hash Table are implemented and included in this package.
Future releases will have many other data structures.
The hash table in this package uses separate chaining to avoid collision. In the "hash_table" directory, the hash table implementation uses linked lists...