【LeetCode】面试题39. 数组中出现次数超过一半的数字(JAVA)

原题地址:https://leetcode-cn.com/problems/shu-zu-zhong-chu-xian-ci-shu-chao-guo-yi-ban-de-shu-zi-lcof/

题目描述:
在这里插入图片描述

代码:

参考:巧妙解题 比排序实现更高效
用count计数,当count为0时,res换下一个数;否则如果nums[i]和res是同一个数,那么count++;不是同一个数,count–。因为如果一个数的个数超过数组一半的话,它的count一直到最后也不会减到0。

class Solution {
    public int majorityElement(int[] nums) {
        int count = 0, res = 0;
        for(int i = 0; i < nums.length; i ++)
        {
            if(count == 0)
            {
                res = nums[i];
                count ++;
            }
            else
            {
                if(nums[i] == res) count ++;
                else count --;
            }
        }
        return res;
    }
}

哈希:(复杂度比较高)

class Solution {
    public int majorityElement(int[] nums) {
        Map<Integer, Integer> map = new HashMap<>();
        for(int i = 0; i < nums.length; i ++)
        {
            if(map.containsKey(nums[i]))
            {
                int t = map.get(nums[i]);
                if(t ++ >= nums.length / 2) return nums[i];
                map.put(nums[i], t);
            }
            else
                map.put(nums[i], 1);
        }
        return nums[0];
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>