An open API service indexing awesome lists of open source software.

https://github.com/publius-fabius/pubmt

Data structures and utilities for C. Includes linked lists, dynamic arrays, binary heaps, avl trees, hash maps, and more!
https://github.com/publius-fabius/pubmt

c structures-c

Last synced: 4 months ago
JSON representation

Data structures and utilities for C. Includes linked lists, dynamic arrays, binary heaps, avl trees, hash maps, and more!

Awesome Lists containing this project

README

          

# Publius Multi-Tool (PubMT)

A collection of useful tools conspicuously absent from standard C.

- pubmt/linked_list.h - Singly Linked List Callback Interface (Full Coverage)
- pubmt/dynamic_array.h - Dynamic Array Callback Interface (Full Coverage)
- pubmt/binary_heap.h - Binary Heap Callback Interface (Full Coverage)
- pubmt/hash_map.h - Hash Map Callback Interface (Full Coverage)
- pubmt/avl_tree.h - Non-Recursive AVL Tree Callback Interface (Full Coverage)
- pubmt/byte_stack.h - Downward Growing Byte Stack (Full Coverage)