Given an array with n objects colored red, white or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the order red, white and blue.

Here, we will use the integers 0, 1, and 2 to represent the color red, white, and blue respectively.

Note: You are not suppose to use the library's sort function for this problem.

Example:

Input: [2,0,2,1,1,0]
Output: [0,0,1,1,2,2]

Follow up:

    • A rather straight forward solution is a two-pass algorithm using counting sort.
      First, iterate the array counting number of 0's, 1's, and 2's, then overwrite array with total number of 0's, then 1's and followed by 2's.
    • Could you come up with a one-pass algorithm using only constant space?
 

这道题的本质还是一道排序的题,题目中给出提示说可以用计数排序,需要遍历数组两遍,那么先来看这种方法,因为数组中只有三个不同的元素,所以实现起来很容易。

- 首先遍历一遍原数组,分别记录 0,1,2 的个数。
- 然后更新原数组,按个数分别赋上 0,1,2。

解法一:

class Solution {
public:
void sortColors(vector<int>& nums) {
vector<int> colors();
for (int num : nums) ++colors[num];
for (int i = , cur = ; i < ; ++i) {
for (int j = ; j < colors[i]; ++j) {
nums[cur++] = i;
}
}
}
};

题目中还要让只遍历一次数组来求解,那么就需要用双指针来做,分别从原数组的首尾往中心移动。

- 定义 red 指针指向开头位置,blue 指针指向末尾位置。

- 从头开始遍历原数组,如果遇到0,则交换该值和 red 指针指向的值,并将 red 指针后移一位。若遇到2,则交换该值和 blue 指针指向的值,并将 blue 指针前移一位。若遇到1,则继续遍历。

解法二:

class Solution {
public:
void sortColors(vector<int>& nums) {
int red = , blue = (int)nums.size() - ;
for (int i = ; i <= blue; ++i) {
if (nums[i] == ) {
swap(nums[i], nums[red++]);
} else if (nums[i] == ) {
swap(nums[i--], nums[blue--]);
}
}
}
};

当然我们也可以使用 while 循环的方式来写,那么就需要一个变量 cur 来记录当前遍历到的位置,参见代码如下:

解法三:

class Solution {
public:
void sortColors(vector<int>& nums) {
int left = , right = (int)nums.size() - , cur = ;
while (cur <= right) {
if (nums[cur] == ) {
swap(nums[cur++], nums[left++]);
} else if (nums[cur] == ) {
swap(nums[cur], nums[right--]);
} else {
++cur;
}
}
}
};

Github 同步地址:

https://github.com/grandyang/leetcode/issues/75

类似题目:

Sort List

Wiggle Sort II

Wiggle Sort

参考资料:

https://leetcode.com/problems/sort-colors/

https://leetcode.com/problems/sort-colors/discuss/26500/Four-different-solutions

https://leetcode.com/problems/sort-colors/discuss/26472/Share-my-at-most-two-pass-constant-space-10-line-solution

https://leetcode.com/problems/sort-colors/discuss/26760/C%2B%2B-solution-in-8-lines%3A-an-instance-of-the-Dutch-national-flag-problem-by-Edsger-Dijkstra

LeetCode All in One 题目讲解汇总(持续更新中...)

最新文章

  1. LeetCode OJ1:Reverse Words in a String
  2. TCP短连接TIME_WAIT问题解决方法大全
  3. 转:最简单的视频网站(JavaEE+FFmpeg)
  4. Direct2D开发:纹理混合
  5. hdu 5510 Bazinga (kmp+dfs剪枝) 2015ACM/ICPC亚洲区沈阳站-重现赛(感谢东北大学)
  6. equals函数的作用
  7. POJ 1330 Nearest Common Ancestors(Tarjan离线LCA)
  8. 基于ssh反向代理实现的远程协助
  9. 使用 Vue 开发 scrollbar 滚动条组件
  10. java反射机制简单实例
  11. Oracle之with as和update用法
  12. 稳定排序nlogn之归并排序_一维,二维
  13. 集合 enum 枚举 简介 案例 MD
  14. ELK 方案
  15. strtr、str_replace()、substr_replace、preg_replace之间的区别
  16. WPF控件TreeView使用
  17. ny104 最大和
  18. 13信号signal
  19. MongoDB for Java
  20. 从网络得到数据--Arduino+以太网

热门文章

  1. Python 下载图片的三种方法
  2. 2019.11.21 做OJ题的反思
  3. Vue.js 源码分析(一) 代码结构
  4. 机器学习(十一)-------- 异常检测(Anomaly Detection)
  5. Linbux下的Bash对拍
  6. 【机器学习】PCA
  7. dubbo入门学习
  8. python with语句与contextlib
  9. Python【day 11】函数名的应用
  10. Java之路---Day16(泛型)