Contains Duplicate
Total Accepted: 26477
Total Submissions: 73478 My Submissions


Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.

我的解决方式:非常显然不是最优的。记录每一个插入的状态。看起来也不是非常简洁,可是对于方案二的优势是在对于长数组时候,第一个有反复的数字就退出了

  1. class Solution {
  2. public:
  3. bool containsDuplicate(vector<int>& nums)
  4. {
  5. set<int> result;
  6.  
  7. set<int>::iterator itor ;
  8.  
  9. for(int i = 0;i< nums.size();++i)
  10. {
  11. itor = result.find(nums[i]) ;
  12.  
  13. if(itor != result.end())
  14. {
  15. return true;
  16. }
  17. else
  18. {
  19. result.insert(nums[i]);
  20. }
  21. }
  22.  
  23. return false;
  24.  
  25. }
  26. };

很简洁的解决方式,类似python 了。可是stl 中的set是基于平衡树的,而python中是hash树。所以python可能会高效一些
  1. class Solution {
  2. public:
  3. bool containsDuplicate(vector<int>& nums) {
  4. return nums.size() > set<int>(nums.begin(), nums.end()).size();
  5. }
  6. };

python 的版本号:

  1. class Solution:
  2. def containsDuplicate(self, nums):
  3. return len(nums) > len(set(nums))

c++ 的hash版本号:同类的hash code是同样的,这是一个很重要的编程思想

  1. class Solution {
  2. public:
  3. bool containsDuplicate(vector<int>& nums) {
  4. unordered_set<int> hashset;
  5. for (int i = 0; i < nums.size(); ++i) {
  6. if (hashset.find(nums[i]) != hashset.end()) {
  7. return true;
  8. }
  9. else {
  10. hashset.insert(nums[i]);
  11. }
  12. }
  13. return false;
  14. }
  15. };

c++排序版本号:

  1. +2 votes
  2. 942 views
  3. class Solution {
  4. public:
  5. bool containsDuplicate(vector<int>& nums)
  6. {
  7. int size=nums.size();
  8. sort(nums.begin(),nums.end());
  9. nums.erase(unique(nums.begin(),nums.end()),nums.end());
  10. return (size!=nums.size());
  11. }
  12. };
  13.  
  14. +4 votes
  15. Your running time is 28ms, if not use unique, it will be 24ms:
  16. class Solution {
  17. public:
  18. bool containsDuplicate(std::vector<int>& nums) {
  19. std::sort(nums.begin(), nums.end());
  20. for (int i = 1; i < nums.size(); ++i)
  21. if (nums[i] == nums[i - 1])
  22. return true;
  23. return false;
  24. }
  25. };

leetcode 217 Contains Duplicate 数组中是否有反复的数字的更多相关文章

  1. leetcode 217 Contains Duplicate 数组中是否有重复的数字

     Contains Duplicate Total Accepted: 26477 Total Submissions: 73478 My Submissions Given an array o ...

  2. [Leetcode 217&219]寻找数组中的重复值Contains Duplicate I & II

    [题目1] Given an array of integers, find if the array contains any duplicates. Your function should re ...

  3. [LeetCode] Kth Largest Element in an Array 数组中第k大的数字

    Find the kth largest element in an unsorted array. Note that it is the kth largest element in the so ...

  4. Leetcode - 剑指offer 面试题29:数组中出现次数超过一半的数字及其变形(腾讯2015秋招 编程题4)

    剑指offer 面试题29:数组中出现次数超过一半的数字 提交网址: http://www.nowcoder.com/practice/e8a1b01a2df14cb2b228b30ee6a92163 ...

  5. LeetCode 80. 删除排序数组中的重复项 II

    LeetCode 80. 删除排序数组中的重复项 II

  6. 前端与算法 leetcode 26. 删除排序数组中的重复项

    目录 # 前端与算法 leetcode 26. 删除排序数组中的重复项 题目描述 概要 提示 解析 算法 # 前端与算法 leetcode 26. 删除排序数组中的重复项 题目描述 26. 删除排序数 ...

  7. [LeetCode] 215. Kth Largest Element in an Array 数组中第k大的数字

    Find the kth largest element in an unsorted array. Note that it is the kth largest element in the so ...

  8. 每天一道面试题LeetCode 80--删除排序数组中的重复项 II(python实现)

    LeetCode 80--删除排序数组中的重复项 II 给定一个排序数组,你需要在原地删除重复出现的元素,使得每个元素最多出现两次,返回移除后数组的新长度. 不要使用额外的数组空间,你必须在原地修改输 ...

  9. 面试题:给定一个长度为N的数组,其中每个元素的取值范围都是1到N。判断数组中是否有重复的数字

    题目:给定一个长度为N的数组,其中每个元素的取值范围都是1到N.判断数组中是否有重复的数字.(原数组不必保留) 方法1.对数组进行排序(快速,堆),然后比较相邻的元素是否相同.时间复杂度为O(nlog ...

随机推荐

  1. (转)版本管理工具介绍——SVN篇(一)

    http://blog.csdn.net/yerenyuan_pku/article/details/72620101 SVN是何物 SVN是Subversion的简称,是一款集中式的开源版本控制系统 ...

  2. DH密钥交换算法

    DH密钥交换算法:DH的全称为Diffie-Hellman ,该算法可以在需要安全传输的前提下,确定双方的对称密钥,该算法的核心在于双方的私钥没有进入网络传输流程,根据对方的公钥和己方的私钥,可以计算 ...

  3. poj3061 Subsequence【尺取法】

    Description A sequence of N positive integers (10 < N < 100 000), each of them less than or eq ...

  4. [Algorithm] 9. Two Sum

    Description Given an array of integers, return indices of the two numbers such that they add up to a ...

  5. java容器(数组和集合)内元素的排序问题

    package com.janson.day20180827; import java.util.*; /** * java中容器内对象的排序可以通过Collections.sort()和Arrays ...

  6. Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'.

    在连接数据库时,使用了最新版本的mysql-Connector,所以导致老版本的“com.mysql.jdbc.Drive”不可行,要改为“com.mysql.cj.jdbc.Driver”

  7. eclipse c/c++配置

    先下载jdk,如果jdk装的是32位,eclipse也要下载32位的,64位也是一样.我用的是jdk7 64位. 下载eclipse,去官网上下载最新的http://www.eclipse.org/d ...

  8. Python学习——filter&map

    filter&map 1.filter函数 filter()函数用于过滤序列,过滤掉不符合条件的元素,Python3以后返回一个迭代器对象(可以用list()转化为列表查看). filter( ...

  9. 3.8.5 多重选择:switch语句

        在处理多个选项时,使用if/else结构显得有些笨拙.               Scanner in = new Scanner(System.in);             Syste ...

  10. Windows窗口创建的具体步骤

    /*实现窗口创建的六步骤:第一步:创建入口函数WinMain第二步:注册窗口类第三部:实现回调函数的功能第四步:显示窗口第五步:更新窗口第六步:消息循环*/ #include "stdafx ...