-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsortcolor.java
64 lines (60 loc) · 1.55 KB
/
sortcolor.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
54
55
56
57
58
59
60
61
62
63
64
import java.util.Arrays;
//leetcode problems
class sortcolor{
public static void main(String[] args){
int[] a = {0,1,2,1,0,2,1,1,0};
int n = a.length;
int c0 = 0;
int c1 = 0;
int c2 = 0;
for(int i = 0 ; i< n ; i++){
if(a[i] == 0){
c0 += 1;
}
else if(a[i] == 1){
c1 += 1;
}
else if(a[i] == 2){
c2 += 1;
}
}
int ans[] = new int[n];
// for(int i = 0; i < c0 ; i++){
// ans[i] = 0;
// }
// for(int i = 0 ; i < c1; i++){
// ans[c0 + i] = 1;
// }
// for(int i = 0 ; i < c2; i++){
// ans[c1 + i] = 2;
// }
// Arrays.sort(ans);
// System.out.println(Arrays.toString(ans));
// // for(int i = 0 ; i < c1; i++){
// // ans[c0 + i] = 1;
// // }
// // for(int i = 0; i < c2; i++){
// // ans[c1 + i] = 2;
// }
// System.out.println(Arrays.toString(ans));
int i = 0;
while(c0 > 0 || c1 > 0 || c2 > 0){
if(c0 > 0){
ans[i] = 0;
c0--;
// i++;
}
else if(c1 > 0){
ans[i] = 1;
c1--;
}
else if(c2 > 0){
ans[i] = 2;
c2--;
}
i++;
}
System.out.println(Arrays.toString(ans));
}
// System.out.println(c0);
}