Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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)