Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kisom/dsc
Data Structures in C: a kata for focusing my thoughts.
https://github.com/kisom/dsc
Last synced: 18 days ago
JSON representation
Data Structures in C: a kata for focusing my thoughts.
- Host: GitHub
- URL: https://github.com/kisom/dsc
- Owner: kisom
- License: isc
- Created: 2013-05-13T00:19:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-05-13T01:55:40.000Z (over 11 years ago)
- Last Synced: 2024-10-11T02:47:06.086Z (about 1 month ago)
- Language: C
- Size: 121 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
dsc
data structures in CAfter another re-reading of "Programming Wisdom", I was struck by the quote
> The following data structures are a complete list for almost all practical
> programs:
> array
> linked list
> hash table
> binary treeIn order to progress in my path to being a more competent developer, I've
decided to work on implementing these data structures in C. This may even
be a semi-annual tradition, to always go back to my roots. The more familiar
I become with these data structures, the faster this should be. In essence,
this is something of a kata, a programming drill that helps me to focus my
thoughts on other problems.IN-PROGRESS
-----------
* slist: singly-linked list
* dlist: doubly-linked listLICENSE
-------
This code is released under an ISC license. See the LICENSE file for the
full text of the license.