75 Sort Colors

1. Question

Given an array withnobjects 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?

2. Implementation

(1) Partition in Quick Sort

class Solution {
    public void sortColors(int[] nums) {
       if (nums == null || nums.length == 0) {
           return;
       } 

       int redIndex = 0, blueIndex = nums.length - 1;

        for (int i = 0; i <= blueIndex; i++) {
            if (nums[i] == 0) {
                swap(nums, i, redIndex);
                ++redIndex;
            }
            else if (nums[i] == 2) {
                swap(nums, i, blueIndex);
                --blueIndex;
                --i;
            }
        }
    }

    public void swap(int[] nums, int i, int j) {
        int temp = nums[i];
        nums[i] = nums[j];
        nums[j] = temp;
    }
}

(2) Count Sort

class Solution {
    public void sortColors(int[] nums) {
        if (nums == null || nums.length == 0) {
           return;
        } 

        int n = nums.length;
        int[] count = new int[3];

        for (int num : nums) {
            count[num]++;
        }

        int index = 0;
        for (int i = 0; i < count.length; i++) {
            while (count[i] > 0) {
                nums[index++] = i;
                --count[i];
            }
        }
    }
}

3. Time & Space Complexity

Partition in Quick Sort: 时间复杂度O(n), 空间复杂度O(1)

Count Sort: 时间复杂度O(n), 空间复杂度O(n)

Last updated