首页 > 其他 > 详细

LeetCode Sort Colors

时间:2014-07-18 16:16:03      阅读:258      评论:0      收藏:0      [点我收藏+]
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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!