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

leetcode--Sort Colors

时间:2015-05-18 09:18:05      阅读:118      评论: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.

解题思路

求只有三个值的数组(0,1,2)的排序。

方法一

重新开辟一段内存,先将0存入,再存入1,之后存入2.时间复杂度为O(n)空间复杂度为O(n)代码如下:
class Solution {
public:
    void sortColors(vector<int>& nums) {
        if(nums.size()==1) return;
        vector<int> aa;
        for(int col=0;col<3;col++)
        {
            for(int i=0;i<nums.size();i++)
        {
            if(nums[i]==col)
            aa.push_back(nums[i]);
        }
        }
        nums=aa;
    }
};

方法二

从数组前后向中间查找,0的话跟前面数组交换,1的话跟后面节点交换,时间复杂度为O(n/2),空间复杂度为O(1)
class Solution {
public:
    void sortColors(vector<int>& nums) {
        if(nums.size()==1) return;
        vector<int> aa;
        for(int col=0;col<3;col++)
        {
            for(int i=0;i<nums.size();i++)
        {
            if(nums[i]==col)
            aa.push_back(nums[i]);
        }
        }
        nums=aa;
    }
};

leetcode--Sort Colors

标签:

原文地址:http://blog.csdn.net/sinat_24520925/article/details/45790487

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