码迷,mamicode.com
首页 > 其他好文 > 详细

leetCode(30):Sort Colors

时间:2017-06-26 13:35:55      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:==   name   object   bsp   cpp   objects   tracking   复杂   etc   

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.




void sortColors(vector<int>& nums)
{//排序时间复杂度O(n)
	int length=nums.size();
	int zero=0;
	int two=length-1;
	while(zero<length && nums[zero]==0)
	{//找到第一个不为0的数的下标
		zero++;
	}
	while(two>=zero && nums[two]==2)
	{//找到倒数第一个不为2的数的下标,zero前的数都是0
		two--;
	}

    for(int i=zero;i<=two;++i)
    {
    	if(nums[i]==0)
    	{//假设为0,和zero指向的数交换,zero前移
    		nums[i]=1;//zero指向的值肯定是1,首先不可能为0,其次,i遍历过的地方,2都已经换到最后
    		nums[zero]=0;
    		zero++;
    	}
    	else if(nums[i]==1)
    	{//假设为1,则跳过
    		continue;
    	}
    	else
    	{//假设为2。则和two指向的数交换,并更新two的值。
    		//和zero不同,two前面的数可能还未排序
    		nums[i]=nums[two];
    		nums[two]=2;
    		two--;
    		while(two>=i && nums[two]==2)
    		{
    			two--;
    		}
    		i--;//先向后退一步。由于two指向的数还未进行排序
    	}
    }
}


leetCode(30):Sort Colors

标签:==   name   object   bsp   cpp   objects   tracking   复杂   etc   

原文地址:http://www.cnblogs.com/wzzkaifa/p/7079863.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!