前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【剑指offer】数组中重复的数字

【剑指offer】数组中重复的数字

作者头像
喜欢ctrl的cxk
发布2019-11-08 15:44:12
6450
发布2019-11-08 15:44:12
举报
文章被收录于专栏:Don的成长史

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

本文链接:https://blog.csdn.net/weixin_42449444/article/details/90109538

题目描述:

在一个长度为n的数组里的所有数字都在0到n-1的范围内。 数组中某些数字是重复的,但不知道有几个数字是重复的。也不知道每个数字重复几次。请找出数组中任意一个重复的数字。 例如,如果输入长度为7的数组{2,3,1,0,2,5,3},那么对应的输出是第一个重复的数字2。

解题思路:

用set来记录数组中出现过的数字,若s.count(numbers[i]) != 0,就说明numbers[i]这个数字在数组中重复出现啦。

AC代码:

代码语言:javascript
复制
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) 
    {
        set<int> s;    //用来记录数组中出现过的数字
        for(int i = 0; i < length; i++)    
        {
            if(s.count(numbers[i]) == 0)    //若该数字没在数组中出现过
            {
                s.insert(numbers[i]);
            }
            else     //若该数字在数组中已经出现过了
            {
                *duplication = numbers[i];    //numbers[i]就是数组中第一个重复的数字
                return true;
            }
        }   
        return false;
    }
};
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/05/11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目描述:
  • 解题思路:
  • AC代码:
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档