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

https://github.com/ryansakurai/data-structure-pack

Pack of data structures implemented in C
https://github.com/ryansakurai/data-structure-pack

c data-structures deque heap list ordered-list queue stack

Last synced: 3 months ago
JSON representation

Pack of data structures implemented in C

Awesome Lists containing this project

README

        

🧱 Data Structures in C 🧱

This is a pack of generic data structures implemented in C. It includes:

- **Deque** (double ended queue)
- Linked implementation
- **Heap** (priority queue)
- Array implementation
- Min-heap
- Max-heap
- **List**
- Array implementation
- Linked implementation
- **Ordered list**
- Array implementation
- Linked implementation
- **Queue**
- Linked implementation
- **Stack**
- Array implementation
- Linked implementation