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

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

作者头像
AI那点小事
发布2020-04-18 00:43:37
5220
发布2020-04-18 00:43:37
举报
文章被收录于专栏:AI那点小事AI那点小事

概述

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


C++ AC代码

代码语言:javascript
复制
#include <iostream>
#include <map>
#include <set>
using namespace std;

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
        int Find(int numbers[], int length,int num){
            int index = -1;
            for(int i = 0 ; i < length ; i++){
                if(numbers[i] == num){
                    index = i;
                    break;
                }
            }
            return index;
        }

        bool duplicate(int numbers[], int length, int* duplication) {
            if(length <= 0 || numbers ==NULL){
                return false;
            }
            map<int,int> Map;
            set<int> s;
            for(int i = 0 ; i < length ; i++){
                if(Map[numbers[i]] == 0){
                    Map[numbers[i]]++;
                }else if(Map[numbers[i]] >= 1){
                    s.insert(numbers[i]);
                    Map[numbers[i]]++;
                }
            }
            set<int>::iterator it;
            int cnt = 0;
            for(it = s.begin(); it != s.end() ; it++){
                if(Map[*it] > 1){
                    duplication[cnt++] = *it;
                    return true;
                }
            }
            return false; 
        }
};

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

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

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

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

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