数组中出现次数超过一半的数字

  • 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为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 num = array[0], count = 1;
		for (int i = 1; i < array.length; ++i) {
			if (array[i] == num) {
				count++;
			} else {
				count --;
				if(count == 0){
					num = array[i];
					count = 1;
				}
			}
		}
                //因为留下来的不必定是最小的,因此要检查一下
		count = 0;
		for(int i = 0; i < array.length; ++i)
			if(array[i] == num)
				count++;
		if(count > array.length/2)
			return num;
		return 0;
	}
}
相关文章
相关标签/搜索