时间效率:数组中出现次数超过一半的数字

  数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}。由于数字2在数组中出现了5次,超过数组长度的一半,因此输出2。如果不存在则输出0。

public class Solution {
    public int MoreThanHalfNum_Solution(int [] array) {
        if (array.length == 0) {
            return 0;
        }
        int temp = array[0];
        int count = 1;
        for (int i = 1; i < array.length; i++) {
            if (count == 0) {
                temp = array[i];
                count = 1;
                continue;
            } else {
                if (temp == array[i]) {
                    count++;
                } else {
                    count--;
                }
            }
        }

        // 验证
        count = 0;
        for (int i = 0; i < array.length; i++) {
            if (array[i] == temp)
                count++;
        }
        if (count * 2 > array.length)
            return temp;
        return 0;        
    }
}

 

posted @ 2016-09-04 10:01  SaraMorning  阅读(184)  评论(0编辑  收藏  举报