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

https://github.com/clickermonkey/cdsl

A data structure library written in C
https://github.com/clickermonkey/cdsl

Last synced: 4 months ago
JSON representation

A data structure library written in C

Awesome Lists containing this project

README

          

CDSL
====

A data structure library written in C

Data Structures:

* adeque = Deque (array)
* aqueue = Queue (array)
* queue = Queue (linked)
* astack = Stack (array)
* stack = Stack (linked)
* alist = List (array)
* list = List (linked)
* maxheap = Max Heap (array)
* minheap = Min Heap (array)
* hashtable = (array+linked)
* binarytree = (linked)

2D Structures:

* transform = Matrix/Transform
* plane = Plane
* vector = Vector
* line = Line
* array2d = A 2D array

Example Usage:

* examples