-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathcountingSort.c
38 lines (37 loc) · 945 Bytes
/
countingSort.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
#include <stdio.h>
int main() {
int arrayLength;
printf("How many numbers do you want to sort? ");
scanf("%d",&arrayLength);
int array[arrayLength];
int sortedArray[arrayLength];
int largest = 0;
for (int i = 0; i < arrayLength; i++) {
printf("%d. number:",i+1);
int j;
scanf("%d", &j);
if (j > largest) {
largest = j;
}
array[i] = j;
}
int count[largest+1];
for(int i = 0; i < largest+1; i++) {
count[i] = 0;
}
for(int i = 0; i < arrayLength; i++) {
count[array[i]]++;
}
for(int i = 1; i < largest+1; i++) {
count[i] += count[i-1];
}
for(int i = 0; i < arrayLength; i++) {
sortedArray[count[array[i]]-1] = array[i];
count[array[i]] -= 1;
}
printf("\nSorted array: ");
for(int i = 0; i < arrayLength; i++) {
printf("%d ",sortedArray[i]);
}
return 0;
}