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

169. Majority Element

时间:2016-06-05 06:32:01      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

    /*
     * 169. Majority Element
     * 12.7 by Mingyang
     * 有时候简单到连开始的为空判断都不要
     */
     public int majorityElement(int[] num) {
            int major=num[0], count = 1;
            for(int i=1; i<num.length;i++){
                if(count==0){
                    count++;
                    major=num[i];
                }else if(major==num[i]){
                    count++;
                }else count--;
            }
            return major;
        }

 

169. Majority Element

标签:

原文地址:http://www.cnblogs.com/zmyvszk/p/5560018.html

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