Skip to content

Instantly share code, notes, and snippets.

View cmslewis's full-sized avatar

Chris Lewis cmslewis

View GitHub Profile
@cmslewis
cmslewis / sort.c
Created February 3, 2013 09:30
A few simple sorting algorithms
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
/* ==========================================================================
* COMPARATORS
* ========================================================================== */