-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcountingSort.java
More file actions
73 lines (54 loc) · 1.7 KB
/
countingSort.java
File metadata and controls
73 lines (54 loc) · 1.7 KB
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
66
67
68
69
70
71
72
73
import java.util.Arrays;
import java.util.HashMap;
public class countingSort {
public static void countSort (int [] arr){
if ( arr == null || arr.length <= 1) return;
int large = arr[0];
for (int i : arr) {
if (i > large) large = i ;
}
int [] freq= new int[large + 1];
for (int i : arr) {
freq[i]++ ;
}
System.out.println( " Print the array := ");
int k = 0 ;
for (int i = 0 ; i <= large; i++){
while ( freq[i] > 0 ){
arr[k++] = i ;
freq[i]--;
}
}
}
public static void usingMap (int [] arr){
if ( arr == null || arr.length <= 1) return;
int large = arr[0];
for (int i : arr) {
if (i > large) large = i ;
}
//new Approach :=
int min = Arrays.stream(arr).min().getAsInt() ;
HashMap <Integer ,Integer> map = new HashMap<>();
for (int i : arr) {
map.put(i , map.getOrDefault(i , 0) + 1) ;
}
int k = 0 ;
for (int i = min ; i <= large; i++){
int count = map.getOrDefault(i, 0);
for (int j = 0 ; j < count ;j++){
arr[k++]= i ;
}
}
}
public static void main(String[] args) {
int [] arr = {5 , 7 ,4 , 3 , 3 , 1};
countSort(arr);
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
usingMap(arr);
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
}
}