Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manelli/c-data-structures
Reusable Data Structures for C
https://github.com/manelli/c-data-structures
Last synced: 7 days ago
JSON representation
Reusable Data Structures for C
- Host: GitHub
- URL: https://github.com/manelli/c-data-structures
- Owner: manelli
- Created: 2013-10-31T04:39:12.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-15T20:43:14.000Z (over 10 years ago)
- Last Synced: 2024-04-17T00:03:37.058Z (7 months ago)
- Language: C
- Size: 160 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Implementation of Data Structures from "Reusable Data Structures for C" by Roger Session ISBN: 0-13-779034-1
---- lldef.h : Header for Linked List
- llpck.c : Implementation of Linked List
- ll_performance.c : Performance test for Linked List- queuedef.h : Header for Queue (Based on Linked List)
- queuepck.c : Implementation of Queue (Based on Linked List)- stackdef.h : Header for Stack (Based on Linked List)
- stackpck.c : Implementation of Stack (Based on Linked List)
- mem_stackpck.c : Implementation of Stack using with memory allocation- btdef.h : Header for Binary Tree
- btpck.c : Implementation of Binary Tree (Similar to llpck.c)