Data structures for C. Intended to be safe, performant, drop-in versions of similar data structures from Rust.
src | ||
.clang-format | ||
.gitignore | ||
Doxyfile | ||
LICENSE | ||
Makefile | ||
README.md |
C data structures
Currently includes:
stack.h
: Integer-only stack.
Future features
- Implement data structures generically over integer, floating-point and string types.
- Queue (FIFO) using a ring buffer.
- Hash-table.
- Tree structures (BST, red-black, BTree).
- Heap (max/min).
- Graph.