https://github.com/thegazed/pads
PADS are generic C data structures that use the preprocessor for abstraction.
https://github.com/thegazed/pads
abstract-data-structures abstract-data-types adt c data-structures ds
Last synced: about 1 month ago
JSON representation
PADS are generic C data structures that use the preprocessor for abstraction.
- Host: GitHub
- URL: https://github.com/thegazed/pads
- Owner: TheGAzed
- License: unlicense
- Created: 2024-09-07T07:46:12.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-03-30T19:50:08.000Z (about 2 months ago)
- Last Synced: 2025-03-30T20:24:16.145Z (about 2 months ago)
- Topics: abstract-data-structures, abstract-data-types, adt, c, data-structures, ds
- Language: C
- Homepage:
- Size: 324 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
PADSPADS, short for Preprocessor Abstracted Data Structures, is a personal project that aims to recreate popular data structures for the C programming language. The project includes single header libraries for each structure that use the preprocessor for data type abstraction.
PADS data structures are each divided into at least three modes with support for:
- Infinitely expandable structure via memory allocation
- Finite structure of variable size
- Finite preprocessor size structure of predefined size
- Finite structure that wraps necessary data for it to work## **List of Data Structures:**
### **Available:**
- [STACK](https://github.com/TheGAzed/pads/blob/main/source/stack)### **In Progress:**
- [QUEUE](https://github.com/TheGAzed/pads/blob/main/source/queue)
- [FORWARD LIST](https://github.com/TheGAzed/pads/blob/main/source/forward_list)
- [BINARY SET](https://github.com/TheGAzed/pads/blob/main/source/binary_set)
- [LIST](https://github.com/TheGAzed/pads/blob/main/source/list)
- [STRAIGHT LIST](https://github.com/TheGAzed/pads/blob/main/source/straight_list)
- [MATRIX GRAPH](https://github.com/TheGAzed/pads/blob/main/source/matrix_graph)