题目描述
春节期间小明使用微信收到很多个红包,非常开心。在查看领取红包记录时发现,某个红包金额出现的次数超过了红包总数的一半。请帮小明找到该红包金额。写出具体算法思路和代码实现,要求算法尽可能高效。
给定一个红包的金额数组gifts及它的大小n,请返回所求红包的金额。
若没有金额超过总数的一半,返回0。
测试样例:
[1,2,3,2,2],5
返回:2
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;
class H_bao1
{
public:
int getval(vector<int> gifts, int n)
{
sort(gifts.begin(), gifts.end());
int mid = gifts[n / 2];
int sum = 0;
for (int i = 0; i < n; i++)
{
if (gifts[i] == mid)
{
sum++;
}
}
if (sum>n / 2)
{
return mid;
}
else
{
return 0;
}
}
};
//class H_bao2
//{
//public:
// int getval(vector<int>gifts, int n)
// {
// map<int, int> sum;
// int mid = gifts.size() / 2;
// for (const auto& e : gifts)
// {
// sum[e]++;
// }
// for (const auto&e : sum)
// {
// if (e.second >= mid)
// {
// return e.first;
// }
// }
// return 0;
// }
//};
int main1()
{
H_bao1 bao;
vector<int> gifts = { 1, 4, 4, 4, 2 };
int n = gifts.size();
int p = bao.getval(gifts, n);
cout << p << endl;
system("pause");
return 0;
}