Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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*