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

Sort Colors

时间:2014-04-30 22:14:39      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:leetcode   三色排序   

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.


三色排序问题,一般要求是不用计数方式,只遍历数组一次。

用k,j分别表示数组当前需要处理的开始和结束位置, i表示当前需要处理的位置。

如果A[i] == 0, 表示不需要做任何处理,直接把i和k都递增1 (不需要改变i之前的任何位置)
如果A[i] == 2,把j,i的值互换,并且j--,因为j已经是2了,它之后的已经不需要考虑了
如果A[i] == 1, 直接递增i,因为我们期望遇到0(换到最前边,然后递增表示最前的位置k)或者2(换到最后边,并且递减表示最后的位置j)

class Solution {
public:
    void sortColors(int A[], int n) {
        int i = 0, j = n - 1, k = 0;
        while (i <= j) {
            if (A[i] == 0) {
                swap(A[i++], A[k++]);
            } else if (A[i] == 2) {
                swap(A[i], A[j--]);
            } else
                i++;
        }
    }
};


Sort Colors

标签:leetcode   三色排序   

原文地址:http://blog.csdn.net/icomputational/article/details/24744707

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