给定一个大小为 n
的数组 nums
,返回其中的多数元素。多数元素是指在数组中出现次数 大于 ⌊ n/2 ⌋
的元素。
你可以假设数组是非空的,并且给定的数组总是存在多数元素。
public int majorityElement(int[] nums){
Map<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);
}
int maxValue = Integer.MIN_VALUE;
int res = 0;
for(Map.Entry<Integer, Integer> entry : map.entrySet()){
if(entry.getValue() > maxValue){
maxValue = entry.getValue();
res = entry.getKey();
}
}
return res;
}
public int majorityElement(int[] nums){
// 众数排序后,中间位置一定是该众数
Arrays.sort(nums);
return nums[nums.length / 2];
}