-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSort012.java
executable file
·44 lines (38 loc) · 944 Bytes
/
Sort012.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
package array;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Sort012 {
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int[] arr = new int[n];
String line = br.readLine();
String[] temp = line.trim().split("\\s+");
for (int i = 0; i < n; i++)
arr[i] = Integer.parseInt(temp[i]);
int c0 = 0, c1 = 0;
for (int i = 0; i < n; i++) {
if (arr[i] == 0)
c0++;
else if (arr[i] == 1)
c1++;
}
for (int i = 0; i < n; i++) {
if (c0 > 0) {
arr[i] = 0;
c0--;
} else if (c1 > 0) {
arr[i] = 1;
c1--;
} else
arr[i] = 2;
}
StringBuffer sb = new StringBuffer();
for (int i = 0; i < n; i++)
sb.append(arr[i] + " ");
System.out.print(sb);
br.close();
}
}