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
- Host: GitHub
- URL: https://github.com/ryansakurai/data-structure-pack
- Owner: ryansakurai
- License: mit
- Created: 2023-04-08T20:40:18.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-17T21:32:33.000Z (7 months ago)
- Last Synced: 2024-11-17T22:25:02.276Z (7 months ago)
- Topics: c, data-structures, deque, heap, list, ordered-list, queue, stack
- Language: C
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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