微信红包
链接: link.
题目描述:
春节期间小明使用微信收到很多个红包,非常开心。在查看领取红包记录时发现,某个红包金额出现的次数超过了红包总数的一半。请帮小明找到该红包金额。写出具体算法思路和代码实现,要求算法尽可能高效。
给定一个红包的金额数组gifts及它的大小n,请返回所求红包的金额。
若没有金额超过总数的一半,返回0。
测试样例:
[1,2,3,2,2],5
返回:2
解法一:
class Gift {
public:
int getValue(vector<int> gifts, int n) {
// write code here
int count = 1;
int tmp = gifts[0];
if(n==0)
return 0;
for(int i = 1; i < n; i++)
{
if(gifts[i] != tmp)
{
count--;
if(count == 0)
tmp = gifts[i];
}
else
count++;
}
if(count >0)
return tmp;
return 0;
}
};
解法二:
int getValue(vector<int> gifts, int n) {
// write code here
sort(gifts.begin(), gifts.end());
int count = 0;
for(int i = 0; i < n; i++){
if(gifts[i] == gifts[n / 2])
count++;
}
if(count > n /2)
return gifts[n / 2];
return 0;
}
python两行代码的解法
class Gift:
def getValue(self, gifts, n):
a = Counter(gifts).most_common(1)[0]
return a[0] if a[1] > n // 2 else 0