Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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/
└── ...
```