https://github.com/jmcph4/cref
Reference implementations of basic algorithms and data structures in C
https://github.com/jmcph4/cref
Last synced: about 1 year ago
JSON representation
Reference implementations of basic algorithms and data structures in C
- Host: GitHub
- URL: https://github.com/jmcph4/cref
- Owner: jmcph4
- License: mit
- Created: 2016-01-04T05:24:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-06T09:18:53.000Z (over 10 years ago)
- Last Synced: 2025-04-12T06:45:31.649Z (over 1 year ago)
- Language: C
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C Reference Library #
---
This is an effort to implement all basic data structures and algorithms fundamental to computer science in the C language.
This is mainly as a learning tool - not only for myself, but for others like me - and should not be considered for production use. As such, it attempts to arrange all data structures hierarchically, reusing code where possible. For example, a stack implemented via linked lists would simply include the `slist.h` header file and use the linked list implementation contained within. Furthermore, documentation - while spartan right now - will fulfill a very important role.