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

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.

Awesome Lists containing this project

README

        





PADS

PADS, 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)