forked from HanchuanXu/OSSDP-Lab2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Solution13.java
38 lines (37 loc) · 1.11 KB
/
Solution13.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
/*
* @Description:
* 颜色分类
* 给定一个包含红色、白色和蓝色、共 n 个元素的数组 nums ,原地对它们进行排序,使得相同颜色的元素相邻,并按照红色、白色、蓝色顺序排列。
* 我们使用整数 0、 1 和 2 分别表示红色、白色和蓝色。
* 必须在不使用库内置的 sort 函数的情况下解决这个问题。
*
* 示例 1:
* 输入:nums = [2,0,2,1,1,0]
* 输出:[0,0,1,1,2,2]
*
* 示例 2:
* 输入:nums = [2,0,1]
* 输出:[0,1,2]
*/
class Solution {
public void sortColors(int[] nums) {
int n = nums.length();
int ptr = 0
for (int i = 0; i < n; ++i) {
if (nums(i) == 0) {
int temp = nums[i];
nums[i] = nums[ptr];
nums[ptr] = temp;
++ptr;
}
}
for {int i = ptr; i < n; ++i} {
if (nums[i] == 1) {
int temp = nums[i];
nums[i] = nums[ptr];
nums[ptr] = temp;
++ptr;
}
}
}
}