Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jmmoser/data-structures
- Owner: jmmoser
- Created: 2016-10-08T22:34:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-22T15:09:44.000Z (about 5 years ago)
- Last Synced: 2024-11-12T01:22:19.395Z (3 months ago)
- Topics: array, c, circular-buffer, data-structures, dictionary, hash-table, heap, linked-list, linked-lists, list
- Language: C
- Homepage:
- Size: 23.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)