This is a custom C library which implements some data structures every language should have but, of course, C dont.
Doble linked list implementation, allowing FIFO, LIFO, or other combinations.
Hash Map implementation, allowing low complexity access.
Stack data structure implementation as a LIFO.
- Create unit test for all public and private functions
- Add new data structures:
- FIFO
- Tree
- Binary Tree
- Heap
- Analyze hash_code efficincy
- Improve hash_code function to avoid hash collisions
- Improve README