首页 > 其他 > 详细

Sort Colors--LeetCode

时间:2015-04-03 15:16:47      阅读:319      评论:0      收藏: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.

思路:类似于快速排序的partition过程,下面的代码是非常纯粹的使用这个思想,事件复杂度为O(n),其实这里可以将两个循环合并成一个,0是从头开始,2是从尾部开始,但是没有这么做,如果是四个颜色,最好的方式就是首先通过一个循环将其中一个和其余三个分开,然后再一次循环将剩余的三个分开。

#include <iostream>
#include <vector>
#include <string>
using namespace std;
/*
类似于排序 只不过很多重复的 
*/ 
void SortColors(vector<int>& vec)
{
	int i,j;
	i = -1;
	
	// 先把0排好 
	for(j=i+1;j<vec.size();j++)
	{
		if(vec[j] == 0)
		{
			i++;
			swap(vec[i],vec[j]);
		} 
	}
	 // 再把1 排序好
	 
	for(j = i+1;j<vec.size();j++)
	{
		if(vec[j] == 1)
		{
			i++;
			swap(vec[i],vec[j]);
		}
	}
} 

int main()
{
	vector<int> vec(10);
	int i;
	for(i=0;i<vec.size();i++)
		vec[i] = i%3;
	SortColors(vec);
	for(i=0;i<vec.size();i++)
		cout<<vec[i]<<"  ";
	cout<<endl;
	return 0;
}


Sort Colors--LeetCode

原文:http://blog.csdn.net/yusiguyuan/article/details/44855259

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!