[Leetcode] Sort Colors

Posted on 2015-12-16 01:20  Kanone  阅读(267)  评论(0编辑  收藏  举报

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?

 

use two pointers pointing at start and end, these two pointers are used to indicate the boundary of 0, 1, 2. While iterating, current item is swapped to corresponding boundary position.

 

 1 def sortColors(nums):
 2     left = 0
 3     right = len(nums) - 1
 4     i = 0    
 5     while i <= right:
 6         if nums[i] == 0:
 7             nums[i], nums[left] = nums[left], nums[i]
 8             i += 1
 9             left += 1
10         elif nums[i] == 1:
11             i += 1
12         elif nums[i] == 2:
13             nums[i], nums[right] = nums[right], nums[i]
14             right -= 1