Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyberfined/c-algorithms
Set of algorithms and data structures generic implementations
https://github.com/cyberfined/c-algorithms
algorithms-and-data-structures c
Last synced: 3 days ago
JSON representation
Set of algorithms and data structures generic implementations
- Host: GitHub
- URL: https://github.com/cyberfined/c-algorithms
- Owner: cyberfined
- License: bsd-3-clause
- Created: 2019-07-28T13:54:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-29T20:20:16.000Z (about 5 years ago)
- Last Synced: 2023-08-28T05:50:13.793Z (about 1 year ago)
- Topics: algorithms-and-data-structures, c
- Language: C
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# c-algorithms
Set of algorithms and data structures implementations# Build
```bash
mkdir build
cd build
cmake ..
cmake --build .
ctest
```# Content
* data structures
* priority queues
* binary heap
* trees
* red-black tree
* AVL tree
* sorting
* heapsort