-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLeetCode0075.java
More file actions
38 lines (33 loc) · 897 Bytes
/
Copy pathLeetCode0075.java
File metadata and controls
38 lines (33 loc) · 897 Bytes
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
/* Sort Colors
* Example:
* Input: [2,0,2,1,1,0]
* Output: [0,0,1,1,2,2]
* */
import java.util.Arrays;
public class LeetCode0075 {
public static void main(String args[]){
int[] nums = {1,2,0};
sortColors(nums);
System.out.println(Arrays.toString(nums));
}
public static void sortColors(int[] nums) {
int start = 0;
int end = nums.length - 1;
int index = 0;
while (start < end && index <= end){
if (nums[index] == 0){
nums[index] = nums[start];
nums[start] = 0;
start ++;
index ++;
}
else if (nums[index] == 2){
nums[index] = nums[end];
nums[end] = 2;
end --;
}
else
index ++;
}
}
}