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.
class Solution {
public:
void sortColors(vector<int>& nums) {
int r=0,w=0,b=0;
vector<int>::iterator it=nums.begin();
int i,n=nums.size();
for(i=0;i<n;i++)
{
switch(nums[i])
{
case 0:r++;break;//开始在这里出错,case的类型出错
case 1:w++;break;
case 2:b++;break;
}
}
for(i=0;i<n;i++)
{
if(i<r)
*it=0;
if(i<(r+w)&&i>=r)
*it=1;
if(i<(r+w+b)&&i>=(r+w))
*it=2;
it++;
}
}
};
人生有些关口非狠狠的斗一下不可,不能为了混口饭吃而自甘蹉跎。