Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/callumacrae/c-algos
A collection of algos I have implemented in C.
https://github.com/callumacrae/c-algos
Last synced: 20 days ago
JSON representation
A collection of algos I have implemented in C.
- Host: GitHub
- URL: https://github.com/callumacrae/c-algos
- Owner: callumacrae
- Created: 2012-04-02T08:12:28.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-04-02T20:41:53.000Z (almost 13 years ago)
- Last Synced: 2024-12-17T05:29:21.787Z (23 days ago)
- Language: C
- Homepage:
- Size: 391 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# c-algos #
c-algos is a collection of algorithms that I have implimented in C.
## QuickSort ##
quicksort.c contains an implimention of the QuickSort sorting algorithm.
It is WIP, and is known to be a bit buggy.
*Added 2012/04/01*
## Count Inversions ##
countInversions.c contains an algorithm which counts the number of inversions
in an array (basically, how sorted the array is).*Added 2012/03/28*