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

    技术2025-12-09  26

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

    package com.hk; import java.util.*; /** * @author hk * @version 1.0 * @date 2020/4/2 0002 15:09 */ public class Solution { public int MoreThanHalfNum_Solution(int [] array) { if(array == null || array.length == 0) { return 0; } int preValue = array[0];//用来记录上一次的记录 int count = 1;//preValue出现的次数(相减之后) for(int i = 1; i < array.length; i++){ if(array[i] == preValue) { count++; } else{ count--; if(count == 0){ preValue = array[i]; count = 1; } } } int num = 0;//需要判断是否真的是大于1半数,这一步骤是非常有必要的,因为我们的上一次遍历只是保证如果存在超过一半的数就是preValue,但不代表preValue一定会超过一半 for(int i=0; i < array.length; i++) if(array[i] == preValue) { num++; } return (num > array.length/2)?preValue:0; } }
    Processed: 0.020, SQL: 9