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

题目链接

解题思路

  • HashMap:遍历数组,将每一个数字出现的次数保存到HashMap中,然后返回众数即可
  • 摩尔投票:
    • 众数ans:初始值设置为数组的第一个元素
    • 票数votes:表示当前众数ans所获得的票数,初始值设置为0
    • 遍历,对每个元素num是否为0,如果是0则将当前遍历的元素num设置为众数ans
    • 判断num是否为众数ans
      • 是,则votes++
      • 否,则votes--
  • 排序:对数组进行排序,那么众数一定是在中间

AC代码

//HashMap
class Solution {
    public int majorityElement(int[] nums) {
        Map<Integer, Integer> map = new HashMap<>();
        int len = nums.length;
        for (int num : nums) {
            if (map.containsKey(num))
                map.put(num, map.get(num) + 1);
            else
                map.put(num, 1);
            if (map.get(num) > len / 2)
                return num;
        }
        return 0;
    }
}
//摩尔投票
class Solution {
    public int majorityElement(int[] nums) {
        int ans = nums[0];
        int votes = 0;
        for (int num : nums) {
            if (votes == 0)
                ans = num;
            if (ans == num)
                votes++;
            else
                votes--;
        }
        return ans;
    }
}
//排序
class Solution {
    public int majorityElement(int[] nums) {
        Arrays.sort(nums);
        return nums[nums.length / 2];
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值