-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheapsort.c
61 lines (48 loc) · 1.11 KB
/
heapsort.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
60
61
// This file implements heap sort.
#include <stdio.h>
#include <stdlib.h>
void swap(int* a, int* b) {
int t = *a;
*a = *b;
*b = t;
}
void heapify(int arr[], int sz, int i) {
int l = 2*i +1;
int r = 2*i + 2;
int max = i;
if (l < sz && arr[l] > arr[max])
max = l;
if (r < sz && arr[r] > arr[max])
max = r;
if (i != max) {
swap(&arr[i], &arr[max]);
heapify(arr, sz, max);
}
}
int random_int(int lower, int upper) {
return (rand() + lower) % (upper + 1);
}
int main(int argc, char **argv) {
int arr[20];
int index = 0, sz = 20;
// randomly populate the array
int lower = 10;
int upper = 250;
printf("original array is : \n");
while( index < 20) {
arr[index] = random_int(lower, upper);
printf("%d ", arr[index++]);fflush(stdout);
}
printf("\n");
for (index = sz/2 -1; index>=0; index--)
heapify(arr, sz, index);
for (index = sz-1; index>=0; index--) {
swap(&arr[0], &arr[index]);
heapify(arr, index, 0);
}
printf("sorted array is : \n");
for (index = 0; index < 20; index++) {
printf("%d ", arr[index]);
}
printf("\n");
}