剑指OFFER 数组中重复的数字

Posted virgildevil

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指OFFER 数组中重复的数字相关的知识,希望对你有一定的参考价值。

剑指OFFER 数组中重复的数字

使用哈希表来完成

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
    
    map<int,int> m;
    bool duplicate(int num[], int length, int* duplication) {
        for(int i=0;i<length;i++)
        {
            m[num[i]]++;
            if(m[num[i]] > 1)
            {
                (*duplication) = num[i];
                return true;
            }
        }
        return false;
    }
};

以上是关于剑指OFFER 数组中重复的数字的主要内容,如果未能解决你的问题,请参考以下文章

剑指offer03数组中重复的数字

剑指 Offer 03. 数组中重复的数字 的 详细题解

剑指offer数组中重复的数字

剑指offer五十之数组中重复的数字

剑指offer-数组中重复的数字

剑指offer 数组中重复的数字