码迷,mamicode.com
首页 > 编程语言 > 详细

剑指OFFER 数组中重复的数字

时间:2020-01-13 17:46:55      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:value   重复   dup   als   哈希   inpu   数组   put   The   

剑指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 数组中重复的数字

标签:value   重复   dup   als   哈希   inpu   数组   put   The   

原文地址:https://www.cnblogs.com/virgildevil/p/12188398.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!