剑指offer---数组中出现次数超过一半的的数字(Java)
程序员文章站
2022-06-11 08:58:03
...
题目描述
数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}。由于数字2在数组中出现了5次,超过数组长度的一半,因此输出2。如果不存在则输出0。
解析思路
实现代码
public class Solution {
public int MoreThanHalfNum_Solution(int [] array) {
int length = array.length;
if(array == null || length == 0){
return 0;
}
int tmp = array[0];
int counts= 1;
for(int i = 1;i<length;i++){
if(counts == 0){
tmp = array[i];
counts =1;
}else{
if(array[i] == tmp){
counts++;
}else{
counts--;
}
}
}
counts=0;
for(int i = 0;i<length;i++){
if(tmp == array[i]){
counts++;
}
}
if(counts*2>length){
return tmp;
}
return 0;
}
}
运行截图
推荐阅读
-
剑指offer28:找出数组中超过一半的数字。
-
PHP实现找出数组中出现次数超过数组长度一半的数字算法示例
-
[PHP] 算法-数组中出现次数超过一半的数字的PHP实现
-
数据结构算法(数组中出现次数超过一半的数字)
-
php实现数组中出现次数超过一半的数字的统计方法
-
剑指offer 56 数组中数字出现的次数 lintcode 82. 落单的数、83. 落单的数 II、84. 落单的数 III
-
【剑指offer】面试题56(1):数组中只出现一次的两个数字
-
剑指offer:数组中只出现一次的两个数字(java版)
-
剑指offer 面试题56 python版+解析:数组中只出现一次的两个数字,数组中唯一只出现一次的数字
-
剑指offer第二版-56.数组中只出现一次的两个数字