Created
November 14, 2013 13:27
-
-
Save jotaki/7466766 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <time.h> | |
#define LIST_SIZE 1024 * 1024 * 25 | |
/* min by compare */ | |
inline int mbc(int a, int b) { return a > b? b: a; } | |
/* min by subtract */ | |
inline int mbs(int a, int b) { return b + ((a - b) & ((a - b) >> 31)); } | |
/* blah! */ | |
inline int hi(int a, int b) { return a > b? a: b; } | |
/* compare with compare */ | |
int cwc(const void * p1, const void * p2) { | |
return hi((*(int *)p1), (*(int *)p2)) - mbc((*(int *)p1), (*(int *)p2)); | |
} | |
/* compare with subtraction */ | |
int cws(const void * p1, const void * p2) { | |
return hi((*(int *)p1), (*(int *)p2)) - mbs((*(int *)p1), (*(int *)p2)); | |
} | |
/* declarations */ | |
int * genlist(int size); | |
void bm_sort(int * list, int size, int (*cmp)()); | |
int main() | |
{ | |
int * list1, * list2; | |
list1 = genlist(LIST_SIZE); | |
if(list1 == NULL) { | |
perror("genlist()"); | |
return -1; | |
} | |
list2 = malloc(LIST_SIZE * sizeof(int)); | |
if(list2 == NULL) { | |
perror("malloc()"); | |
free(list1); | |
return -1; | |
} | |
memcpy(list2, list1, LIST_SIZE * sizeof(int)); | |
printf("Verifying copy ... "); | |
if(memcmp(list1, list2, LIST_SIZE * sizeof(int)) != 0) { | |
printf("bad\n"); | |
goto _done; | |
} | |
printf("good\n"); | |
printf("Sorting using comparison\n"); | |
bm_sort(list1, LIST_SIZE, cwc); | |
printf("Sorting using 'subtraction'\n"); | |
bm_sort(list2, LIST_SIZE, cws); | |
printf("Verifying sort ... "); | |
if(memcmp(list1, list2, LIST_SIZE * sizeof(int)) != 0) { | |
printf("bad\n"); | |
goto _done; | |
} | |
printf("good\n"); | |
_done: | |
free(list1); | |
free(list2); | |
return 0; | |
} | |
/* not the greatest algorithm, but it works. */ | |
void bm_sort(int * list, int size, int (*cmp)()) | |
{ | |
clock_t start, stop; | |
start = clock(); | |
qsort(list, size, sizeof(int), cmp); | |
stop = clock(); | |
printf("Sorted %d in %ld ms\n", size, | |
(long)(stop - start) * 1000 / CLOCKS_PER_SEC); | |
} | |
int * genlist(int size) | |
{ | |
int * ret = malloc(size * sizeof(int)); | |
int i; | |
if(ret) { | |
srand(time(NULL)); | |
for(i = 0; i < size; ++i) { | |
ret[i] = rand() & 0xffff; | |
} | |
} | |
return ret; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment