微信红包

时间:2016-04-02 17:24:15   收藏:0   阅读:374

春节期间小明使用微信收到很多个红包,非常开心。在查看领取红包记录时发现,某个红包金额出现的次数超过了红包总数的一半。请帮小明找到该红包金额。写出具体算法思路和代码实现,要求算法尽可能高效。

给定一个红包的金额数组gifts及它的大小n,请返回所求红包的金额。

测试样例:
[1,2,3,2,2],5
返回:2

Solution 1:
class Gift {
public:
    int getValue(vector<int> gifts, int n) {
        // write code here
        sort(gifts.begin(), gifts.end());
        int result = gifts[n / 2];
        int num = 0;
        for(int i = 0; i < gifts.size(); ++i) {
            if(result == gifts[i]) {
                num++;
            }
        }
        return num > n/2 ? result : 0;
    }
};
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!