Bootstrap

每天一遍,快乐再见!LeetCode(40)多数元素

给定一个大小为 n 的数组,找到其中的多数元素。多数元素是指在数组中出现次数大于 ⌊ n/2 ⌋ 的元素。
你可以假设数组是非空的,并且给定的数组总是存在多数元素。

示例 1:
输入: [3,2,3]
输出: 3

示例 2:
输入: [2,2,1,1,1,2,2]
输出: 2

Related Topics 位运算 数组 分治算法
👍 799 👎 0

解法一 哈希求解

  • 将数组遍历之后存到一个map里面
  • 键 - 数组元素的值
  • 值 - 出现的个数
  • 最后遍历map数组,将出现次数最多的返回即可

        public int majorityElement(int[] nums) {

            // 哈希求解
            HashMap<Integer, Integer> map = new HashMap<>();
            for (int num : nums) {
                if (!map.containsKey(num)) {
                    map.put(num , 1);
                } else {
                    map.put(num , map.get(num) + 1);
                }
            }
            Map.Entry<Integer, Integer> entry = null;

            for (Map.Entry<Integer, Integer> setEntry : map.entrySet()) {
                if (entry == null || setEntry.getValue() > entry.getValue()) {
                    entry = setEntry;
                }
            }
            return entry.getKey();


        }
    }
;