美文网首页
majority-element-ii 主元素II

majority-element-ii 主元素II

作者: 龙潭吴彦祖丶 | 来源:发表于2019-07-19 17:54 被阅读0次

给定一个整型数组,找到主元素,它在数组中的出现次数严格大于数组元素个数的三分之一。

majority-element-ii

样例

例1:

输入: [99,2,99,2,99,3,3], 
输出: 99.

例2:

输入: [1, 2, 1, 2, 1, 3, 3], 
输出: 1.

思路1

使用 map 存储每个元素的个数
遍历 map 如果个数大于1/3 返回key 即可

思路2摩尔投票法


在任何数组中,出现次数大于该数组长度 1/3 的值只能有一个。
遍历数组找出出现次数最多的哪两个数,然后在遍历数组算出个数
最后比较个数,返回个数大的元素值

public class Solution {
    /*
     * @param nums: a list of integers
     * @return: The majority number that occurs more than 1/3
     */
    public int majorityNumber(List<Integer> nums) {
        // write your code here
        Map<Integer, Double> map = new HashMap<>();
        for (Integer num : nums) {
            map.put(num, map.getOrDefault(num, 0.0) + 1);
        }
        for (Integer key : map.keySet()) {
            if (map.get(key) / nums.size() > 1.0 / 3) {
                return key;
            }
        }
        return -1;
    }
}


public class Solution {
   
    /**
     * @param nums: A list of integers
     * @return: The majority number that occurs more than 1/3
     */
    public int majorityNumber(List<Integer> nums) {
        // write your code
        if (nums == null || nums.size() == 0) {
            return -1;
        }

        int num1 = 0;
        int num2 = 0;
        int count1 = 0;
        int count2 = 0;
        for (Integer num : nums) {

            if (count1 == 0) {
                num1 = num;
                count1++;
            } else if (num1 == num) {
                count1++;
            } else if (count2 == 0) {
                num2 = num;
                count2++;
            } else if (num2 == num) {
                count2++;
            } else {
                count1--;
                count2--;
            }
        }

        count1 = 0;
        count2 = 0;
        for (Integer num : nums) {
            if (num == num1) {
                count1++;
            }
            if (num == num2) {
                count2++;
            }
        }

        return count1 > count2 ? num1 : num2;

    }
}

GitHub https://github.com/xingfu0809/Java-LintCode

相关文章

  • majority-element-ii 主元素II

    给定一个整型数组,找到主元素,它在数组中的出现次数严格大于数组元素个数的三分之一。 majority-elemen...

  • [leetcode]求众数II

    https://leetcode-cn.com/problems/majority-element-ii/ 解法一...

  • 229. Majority Element II

    https://leetcode.com/problems/majority-element-ii/ 给定一个数组...

  • LintCode 主元素 II

    题目 给定一个整型数组,找到主元素,它在数组中的出现次数严格大于数组元素个数的三分之一。 ** 注意事项**数组中...

  • 快速排序

    思想 确定主元素,利用主元素进行数组划分,小于主元素的元素在主元素左边,大于主元素的在右边,利用递归排序。这里用到...

  • 主元素

    碎花成群绮丽如诗旖旎从风 源自于琐碎用不逊色求证碎花裙拼凑了人间色彩谁的谁一阵风,一场梦

  • 每日算法之LeetCode 80:Remove Duplicat

    LeetCode 80:Remove Duplicates from Sorted Array II(去除重复元素...

  • 219. 存在重复元素 II

    219. 存在重复元素 II 哈希暴力俩for会tle的

  • 算法 - 数组主元素(出现次数超过一半的元素)

    题目: 整数数组,包含n个元素 主元素 - 某个元素出现次数 > n/2 是否存在主元素 找出主元素 举个例子 数...

  • [LintCode]主元素

    原文发表在我的博客:主元素求关注、求交流、求意见、求建议。 问题 LintCode:主元素 描述 给定一个整型数组...

网友评论

      本文标题:majority-element-ii 主元素II

      本文链接:https://www.haomeiwen.com/subject/rjgslctx.html