75. 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.

click to show follow up.

Subscribe to see which companies asked this question

分析

这是一个简单排序问题,所给数组中只有0 , 1 , 2 大小的元素,将其由小及大排序即可。

题目明确要求不可用标准库中的排序算法,尽可能使得算法高效。

我们常用的排序算法最优情况下也有  O(nlogn)  的时间复杂度,对待这样一个特殊的数组排序,我们应该采取其他更加高效的方法。

follow up 给出一种方法,分别计算元素0 , 1 , 2 的个数,然后对原数组重新赋值,简单高效,下面用该 
方法给出程序实现。

class Solution {
public:
    void sortColors(vector<int>& nums) {
 if (nums.empty())
            return;


        //初始化一个count数组,count[0] , count[1] , count[2] 分别记录nums中0 , 1 , 2出现个数
        vector<int> count(3, 0);


        vector<int>::iterator iter = nums.begin();


        for (; iter != nums.end(); iter++)
        {
            if (*iter == 0)
                count[0]++;
            else if (*iter == 1)
                count[1]++;
            else if (*iter == 2)
                count[2]++;
        }//for


        //对原数组排序
        int i = 0;
        while (i < count[0])
            nums[i++] = 0;
        while (i < (count[0] + count[1]))
            nums[i++] = 1;
        while (i < (count[0] + count[1] + count[2]))
            nums[i++] = 2;


        return;


    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值