Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joelbeedle/c-algo-playground
Simple collection of data structures and algorithms to help me learn C
https://github.com/joelbeedle/c-algo-playground
algorithms c data-structures
Last synced: 6 days ago
JSON representation
Simple collection of data structures and algorithms to help me learn C
- Host: GitHub
- URL: https://github.com/joelbeedle/c-algo-playground
- Owner: joelbeedle
- Created: 2023-10-30T14:41:34.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-07T13:14:02.000Z (about 1 year ago)
- Last Synced: 2024-01-28T11:16:33.527Z (12 months ago)
- Topics: algorithms, c, data-structures
- Language: C
- Homepage:
- Size: 188 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# c-algo-playground
## Simplified Directory Structure
```
c-algo-playground/
├── include/
│ ├── algorithms/
│ │ └── ...
│ ├── data_structures/
│ │ └── ...
│ └── utils/
│ └── ...
├── src/
│ ├── algorithms/
│ │ └── ...
│ ├── data_structures/
│ │ └── ...
│ ├── utils/
│ │ └── ...
│ └── main.c
└── tests/
└── ...
```