C++Leetcode961:重复 N 次的元素

题目
在大小为 2N 的数组 A 中有 N+1 个不同的元素,其中有一个元素重复了 N 次。
返回重复了 N 次的那个元素。

示例 1:
输入:[1,2,3,3]
输出:3

示例 2:
输入:[2,1,2,5,3,2]
输出:2

示例 3:
输入:[5,1,5,2,5,3,5,4]
输出:5

提示:
4 <= A.length <= 10000
0 <= A[i] < 10000
A.length 为偶数

思路
1、哈希映射。用哈希映射对数组进行计数,最后判断计数等于N的那个数。

实现方法
一、哈希映射

class Solution {
public:
    int repeatedNTimes(vector<int>& A) {
        unordered_map<int,int> m;
        unordered_map<int,int>::iterator it;
        for(int k:A)
            m[k]++;
        for(it=m.begin();it!=m.end();++it){
            if(it->second==A.size()/2)
                break;
        }
        return it->first;
    }
};

猜你喜欢

转载自blog.csdn.net/weixin_43434305/article/details/87926335
今日推荐