Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jmmoser/data-structures

Bare-bones data structures in C
https://github.com/jmmoser/data-structures

array c circular-buffer data-structures dictionary hash-table heap linked-list linked-lists list

Last synced: about 1 month ago
JSON representation

Bare-bones data structures in C

Awesome Lists containing this project

README

        

Bare-bones data structures in C.
------
Includes the following data structures:
- Array (array.h, array.c)
- Dictionary (dictionary.h, dictionary.c)
- Heap (heap.h, heap.c)
- Doubly Linked List (list.h, list.c)
- Circular Buffer (ring.h, ring.c)