-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathCountingSort.java
53 lines (50 loc) · 1.41 KB
/
CountingSort.java
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
public class CountingSort {
static void countSortNaive(int arr[], int k, int n) {
int[] count = new int[k];
for (int i = 0; i < k; i++) {
count[i] = 0;
}
for (int i = 0; i < n; i++) {
count[arr[i]]++;
}
int index = 0;
for (int i = 0; i < k; i++) {
for (int j = 0; j < count[i]; j++) {
arr[index] = i;
index++;
}
}
for (int i = 0; i < n; i++) {
System.out.print(arr[i] + " ");
}
}
static void countSortEfficient(int arr[], int k, int n) {
int[] count = new int[k];
for (int i = 0; i < k; i++) {
count[i] = 0;
}
for (int i = 0; i < n; i++) {
count[arr[i]]++;
}
for (int i = 1; i < k; i++) {
count[i] = count[i - 1] + count[i];
}
int[] res = new int[n];
for (int i = n - 1; i >= 0; i--) {
// res[count[arr[i]] - 1] = arr[i];
// count[arr[i]]--;
// res[--count[arr[i]]];
res[--count[arr[i]]] = arr[i];
}
for (int i = 0; i < n; i++) {
arr[i] = res[i];
System.out.print(arr[i] + " ");
}
}
public static void main(String args[]) {
int arr[] = { 5, 6, 5, 2 };
int n = 4;
int k = 7;
countSortEfficient(arr, k, n);
}
}