-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathcount-sort.c
65 lines (59 loc) · 1002 Bytes
/
count-sort.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
62
63
64
65
#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
void printArray(int *A, int n)
{
for(int i = 0; i < n; i++)
{
printf("%d ", A[i]);
}
printf("\n");
}
int maximum(int A[], int n)
{
int max = INT_MIN;
for(int i = 0; i < n; i++)
{
if(max < A[i])
{
max = A[i];
}
}
return max;
}
void CountSort(int * A, int n)
{
int i, j;
int max = maximum(A,n);
int* count = (int *) malloc((max+1)*sizeof(int));
for(i = 0; i < max+1; i++)
{
count[i] = 0;
}
for(i = 0; i < n; i++)
{
count[A[i]] = count[A[i]]+1;
}
i = 0;
j = 0;
while(i <= max)
{
if(count[i]>0)
{
A[j] = i;
count[i] = count[i] - 1;
j++;
}
else
{
i++;
}
}
}
int main()
{
int A[] = {3, 5, 6, 1, 9, 13, 8};
int n = 7;
CountSort(A, n);
printArray(A, n);
}