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?
对3种颜色进行排序,题目要求不能使用sort function,follow up中说可以有two pass的解法,计数统计用HashMap或Array,先迭代计数0,1,2的个数,然后在over write到数组。又问能否用one pass的解法,这要利用只有3个颜色的特点,使用双指针left, right来记录处理过的0和2的边界位置,一开始,两个指针分别指向头和尾,然后遍历数组。当遇到0时,和left指针的数交换,然后将left指针向右移1位。当遇到2时,和右指针的数交换,然后将右指针向左移1位。遇到1时,不做处理,进入到下一数。right指针时,就已经排好序了,所有0都被交换到了前面,所有2都被交换到了后面。
Java: one pass
public class Solution { public void sortColors(int[] nums) { int left = 0, right = nums.length - 1; int i = 0; while(i <= right){ if(nums[i] == 0){ swap(nums, i, left); left++; i++; // 因为左边的已经检查过,所以可以进入下一个 } else if(nums[i] == 2){ swap(nums, i, right); right--; // 因为交换过来的数还没检查过,所以不能i++ } else { i++; } } } private void swap(int[] nums, int i1, int i2){ int tmp = nums[i1]; nums[i1] = nums[i2]; nums[i2] = tmp; } }
Python: one pass
class Solution(object): def sortColors(self, nums): def triPartition(nums, target): left, idx, right = 0, 0, len(nums) - 1 while idx <= right: if nums[idx] < target: nums[left], nums[idx] = nums[idx], nums[left] left += 1 idx += 1 elif nums[idx] > target: nums[idx], nums[right] = nums[right], nums[idx] right -= 1 else: idx += 1 triPartition(nums, 1)
C++: two pass, Time: O(n), Space: O(1)
class Solution { public: void sortColors(int A[], int n) { int count[3] = {0}, idx = 0; for (int i = 0; i < n; ++i) ++count[A[i]]; for (int i = 0; i < 3; ++i) { for (int j = 0; j < count[i]; ++j) { A[idx++] = i; } } } };
C++: one pass, Time: O(n), Space: O(1)
class Solution { public: void sortColors(int A[], int n) { int red = 0, blue = n - 1; for (int i = 0; i <= blue; ++i) { if (A[i] == 0) { swap(A[i], A[red++]); } else if (A[i] == 2) { swap(A[i--], A[blue--]); } } } };
原文地址:https://www.cnblogs.com/lightwindy/p/8495662.html