码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode题解之Find the Duplicate Number

时间:2018-05-12 20:26:06      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:amp   ==   iterator   png   img   air   cat   std   turn   

1、题目描述

技术分享图片

2、分析

利用C++的 标准模板库 set 对数组进行读取,然后插入,如果检测到元素已经在set内部,则返回该元素值即可。时间复杂度为 O(n),空间复杂度为 O(n);

3、代码

 1 int findDuplicate(vector<int>& nums) {
 2         std::set<int> myset;
 3         std::pair< std::set<int>::iterator,bool > ret;
 4         
 5         for( int i = 0 ; i< nums.size(); i++)
 6         {
 7             ret = myset.insert( nums[i] );
 8             if( ret.second == false )
 9             {
10                 return nums[i];
11             }
12         }
13     }

 

leetcode题解之Find the Duplicate Number

标签:amp   ==   iterator   png   img   air   cat   std   turn   

原文地址:https://www.cnblogs.com/wangxiaoyong/p/9029549.html

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