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.

click to show follow up.

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?

 

计数排序:

 
 1 class Solution {
 2 public:
 3     void sortColors(int A[], int n) {
 4         int num0=0;
 5         int num1=0;
 6         int num2=0;
 7 
 8         for(int i=0;i<n;i++)
 9         {
10             if(A[i]==0)
11                 num0++;
12             if(A[i]==1)
13                 num1++;
14             if(A[i]==2)
15                 num2++;
16         }
17 
18         for(int i=0;i<num0;i++)
19             A[i]=0;
20         for(int i=num0;i<num0+num1;i++)
21             A[i]=1;
22         for(int i=num0+num1;i<n;i++)
23             A[i]=2;
24     }
25 };

 

posted on 2015-04-22 10:43  黄瓜小肥皂  阅读(125)  评论(0编辑  收藏  举报