[LeetCode]Sort Colors

时间:2014-02-20 03:06:49   收藏:0   阅读:330

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.

bubuko.com,布布扣
class Solution {
public:
    void sortColors(int A[], int n) {
        int r = 0, w = 0, b = 0;
        for(int i = 0;i < n;i++)
        {
            switch(A[i])
            {
                case 0: r++;break;
                case 1: w++;break;
                case 2: b++;break;
                default: break;
            }
        }
        for(int i = 0;i < n;i++)
        {
            if(i < r)
                A[i] = 0;
                else if(i < r + w)
                    A[i] = 1;
                else
                    A[i] = 2;
        }
    }
};
bubuko.com,布布扣

原文:http://www.cnblogs.com/changchengxiao/p/3556145.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!