【牛客题解】 ——数组中重复的数字

【牛客题解】 ——数组中重复的数字_第1张图片
(我觉得这个题很奇葩,所以写了,答案就返回了一个数字,不晓得为什么参数给的是int* 类型,满脸问号???并且要找的是数组中第一个重复的元素,意思就是说你找到重复数字,不仅要返回 true,还要把这个数字存到int* 的数组里面)
思路:用map就很方便,first存放数据,second存放数字出现的次数

class Solution {
public:
    // Parameters:
    //        numbers:     an array of integers
    //        length:      the length of array numbers
    //        duplication: (Output) the duplicated number in the array number
    // Return value:       true if the input is valid, and there are some duplications in the array number
    //                     otherwise false
    bool duplicate(int numbers[], int length, int* duplication) 
    {
        unordered_map<int,int> m;
        int j=0;
        for(int i=0;i<length;i++)
        {
            m[numbers[i]]++;
            if(m[numbers[i]]>1)
            {
                duplication[0]=numbers[i];
                return true;
            }
        }
                return false;
    }
};

你可能感兴趣的:(C++,牛客力扣习题分析)