一.题目描述
数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。
你可以假设数组是非空的,并且给定的数组总是存在多数元素。
示例 1:
输入: [1, 2, 3, 2, 2, 2, 5, 4, 2]
输出: 2
限制:
1 <= 数组长度 <= 50000
二.解题思路
1.排序后for循环遍历,找到连续出现次数大于数组长度一半的数即返回
class Solution {
public int majorityElement(int[] nums) {
/*一次循环遍历,stay保存连续的个数
时间复杂度O(nlogn),空间复杂度O(1)
* */
if(nums == null || nums.length == 0){
return -1;
}
if(nums.length == 1){
return nums[0];
}
Arrays.sort(nums);
int stay = 0;
for (int i = 0; i < nums.length - 1; i++) {
if(stay == 0){
stay++;
}
if(nums[i+1] == nums[i]){
stay++;
}else{
stay = 0;
continue;
}
if(stay > nums.length / 2){
return nums[i];
}
}
return -1;
}
}
2.
class Solution {
public int majorityElement(int[] nums) {
/*先排序,如果这个数字出现次数大于一半,那么排序后必定在中间
时间复杂度O(nlogn),空间复杂度O(1)
* */
if(nums == null || nums.length == 0){
return -1;
}
Arrays.sort(nums);
return nums[nums.length / 2];
}
}
3.哈希表法
public int majorityElement2(int[] nums) {
/*哈希表法
时间复杂度O(n),空间复杂度O(n)
* */
if(nums == null || nums.length == 0){
return -1;
}
Map<Integer,Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
//getOrDefault() 方法获取指定 key 对应对 value,如果找不到 key ,
// 则返回设置的默认值。
map.put(nums[i],map.getOrDefault(nums[i],0) + 1);
if(map.get(nums[i]) > nums.length / 2){
return nums[i];
}
}
return -1;
}
4.摩尔投票法
为什么答案能写那么长呢。。。核心就是对拼消耗。玩一个诸侯争霸的游戏,假设你方人口超过总人口一半以上,并且能保证每个人口出去干仗都能一对一同归于尽。最后还有人活下来的国家就是胜利。那就大混战呗,最差所有人都联合起来对付你(对应你每次选择作为计数器的数都是众数),或者其他国家也会相互攻击(会选择其他数作为计数器的数),但是只要你们不要内斗,最后肯定你赢。最后能剩下的必定是自己人。
作者:知乎用户 链接:https://www.zhihu.com/question/49973163/answer/617122734 来源:知乎 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。*
class Solution {
public int majorityElement(int[] nums) {
/*摩尔投票法
由于要找的数字出现的次数比其他所有数字出现的次数之和还要多,
那么要找的数字肯定是最后一次把次数设为1对应的数字
时间复杂度O(n),空间复杂度O(1)
* */
if(nums == null || nums.length == 0){
return -1;
}
int votes = 0;
int x = 0;
int count = 0;
for (int i = 0; i < nums.length; i++) {
if(votes == 0){
x = nums[i];
votes = 1;
continue;
}
votes += (nums[i] == x ? 1 : -1);
}
//验证x是否为众数
for (int num:
nums) {
count += (num == x ? 1 : 0);
}
return count > nums.length / 2 ? x : -1;
}
}