题目

给定一个大小为 n 数组 nums ,返回其中的多数元素。多数元素是指在数组中出现次数 大于 ⌊ n/2 ⌋ 的元素

可以假设数组是非空的,并且给定数组总是存在多数元素

方法一:哈希表

class Solution {
    public int majorityElement(int[] nums) {
        int n = nums.length;
        Map<Integer, Integer> map = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int times = map.getOrDefault(nums[i], 0) + 1;
            if (times > (n / 2))
                return nums[i];
            map.put(nums[i], times);
        }
        return -1;
    }
}

​

时间复杂度 o( n )   空间复杂度 o( n )

方法二:摩尔投票算法

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

原文地址:https://blog.csdn.net/qq_57349657/article/details/134743429

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_26810.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注