Sort Colors

描述

Given an array with n objects colored red, white or blue, sort them 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.

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 an one-pass algorithm using only constant space?

分析

由于0, 1, 2 非常紧凑,首先想到计数排序(counting sort),但需要扫描两遍,不符合题目要求。

由于只有三种颜色,可以设置两个index,一个是red的index,一个是blue的index,两边往中间走。时间复杂度O(n),空间复杂度O(1)

第3种思路,利用快速排序里 partition 的思想,第一次将数组按0分割,第二次按1分割,排序完毕,可以推广到n种颜色,每种颜色有重复元素的情况。

代码1

  1. // Sort Colors
  2. // Counting Sort
  3. // 时间复杂度O(n),空间复杂度O(1)
  4. class Solution {
  5. public:
  6. void sortColors(vector<int>& A) {
  7. int counts[3] = { 0 }; // 记录每个颜色出现的次数
  8. for (int i = 0; i < A.size(); i++)
  9. counts[A[i]]++;
  10. for (int i = 0, index = 0; i < 3; i++)
  11. for (int j = 0; j < counts[i]; j++)
  12. A[index++] = i;
  13. }
  14. };

代码2

  1. // Sort Colors
  2. // 双指针,时间复杂度O(n),空间复杂度O(1)
  3. class Solution {
  4. public:
  5. void sortColors(vector<int>& A) {
  6. // 一个是red的index,一个是blue的index,两边往中间走
  7. int red = 0, blue = A.size() - 1;
  8. for (int i = 0; i < blue + 1;) {
  9. if (A[i] == 0)
  10. swap(A[i++], A[red++]);
  11. else if (A[i] == 2)
  12. swap(A[i], A[blue--]);
  13. else
  14. i++;
  15. }
  16. }
  17. };

代码3

  1. // Sort Colors
  2. // 重新实现 partition()
  3. // 时间复杂度O(n),空间复杂度O(1)
  4. class Solution {
  5. public:
  6. void sortColors(vector<int>& nums) {
  7. partition(partition(nums.begin(), nums.end(), bind1st(equal_to<int>(), 0)),
  8. nums.end(), bind1st(equal_to<int>(), 1));
  9. }
  10. private:
  11. template<typename ForwardIterator, typename UnaryPredicate>
  12. ForwardIterator partition(ForwardIterator first, ForwardIterator last,
  13. UnaryPredicate pred) {
  14. auto pos = first;
  15. for (; first != last; ++first)
  16. if (pred(*first))
  17. swap(*first, *pos++);
  18. return pos;
  19. }
  20. };

相关题目

原文: https://soulmachine.gitbooks.io/algorithm-essentials/content/cpp/sorting/quick-sort/sort-colors.html