39. 数组中出现次数超过一半的数字
文章目录
数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。
你可以假设数组是非空的,并且给定的数组总是存在多数元素。
示例 1:
输入: [1, 2, 3, 2, 2, 2, 5, 4, 2]
输出: 2
解题思路
方法一:哈希表,分别存储数字和数字出现的个数
class Solution {
public:
int majorityElement(vector<int>& nums) {
unordered_map<int, int> counts;
int res = 0, cnt = 0;
for(int num:nums) {
++counts[num];
if(counts[num] > cnt) {
res = num;
cnt = counts[num];
}
}
return res;
}
};
方法二:排序,直接取中间值
class Solution {
public:
int majorityElement(vector<int>& nums) {
sort(nums.begin(), nums.end());
return nums[nums.size()/2];
}
};