-
Notifications
You must be signed in to change notification settings - Fork 497
/
quicksort.c
59 lines (53 loc) · 1.43 KB
/
quicksort.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include "stdio.h"
/*
* @ar_size array size
* @ar array pointer
*/
void quicksort(int ar_size, int * ar) {
int piv;
piv = ar[ar_size-1]; // chose last element as pivot
int i, temp, c = 0;
int prevmax, prevind = -1; // stores last number >= pivot
for (i=0; i<ar_size-1; i++){
if (ar[i] < piv){
if ((prevind > -1) && (ar[i] < prevmax)){
// swap current and previous large element
// current element is less than prevmax so move it to the left side
// and prevmax to the right side
temp = ar[i];
ar[i] = prevmax;
ar[prevind] = temp;
// prevind now has a less than pivot element, no need for it now
// therefore increment it for the next number
prevind = prevind + 1;
prevmax = ar[prevind];
}
c++; // pivot's final location (depends on count of items smaller than pivot)
}
else if (prevind < 0) {
// init first larger than pivot element
// it may be swapped out later (above block)
prevmax = ar[i];
prevind = i;
}
}
if (prevind > -1){ // if some swaps were done
ar[ar_size-1] = ar[c];
ar[c] = piv; // swap pivot to its correct position
}
if (ar_size > 2){
if (c != 0)
quicksort(c, &ar[0]); // recursively quicksort left partition
if (ar_size-c-1 != 0)
quicksort(ar_size-c-1, &ar[c+1]); // right partition
}
}
int main() {
int ar_size = 4, i;
int a[4] = {2, 3, 0, 4};
quicksort(ar_size, a);
for (i=0; i<ar_size; i++){
printf("%d\n", a[i]);
}
return 0;
}