题解 | 数组中出现次数超过一半的数字
数组中出现次数超过一半的数字
https://www.nowcoder.com/practice/e8a1b01a2df14cb2b228b30ee6a92163
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param numbers int整型vector
* @return int整型
*/
int MoreThanHalfNum_Solution(vector<int>& numbers) {
// write code here
int len=numbers.size();
//使用哈希表统计
unordered_map<int,int> hash;
int i=0;
for(auto n:numbers)
{
hash[n]++;
}
auto it=hash.begin();
while(it!=hash.end())
{
if(it->second>len/2)
{
return it->first;
}
it++;
}
return 0;
}
};
