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

LeetCode Sort Colors

时间:2014-07-18 16:15:56      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   art   io   for   

class Solution {
public:
    void sortColors(int A[], int n) {
        int cnt[3] = {0};
        for (int i = 0; i < n; i++) {
            cnt[A[i]]++;
        }
        int start = 0;
        for (int i=0; i<3; i++) {
            if (i > 0) start += cnt[i-1];
            for (int j=start; j < start + cnt[i]; j++) {
                A[j] = i;
            }
        }
    }
};

简化版计数排序,two-pass就two-pass

LeetCode Sort Colors,布布扣,bubuko.com

LeetCode Sort Colors

标签:style   blog   color   art   io   for   

原文地址:http://www.cnblogs.com/lailailai/p/3851896.html

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