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: 6 months 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-11-22T15:09:44.000Z (about 6 years ago)
- Last Synced: 2025-02-28T06:18:41.798Z (10 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)