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

Contains Duplicate 解答

时间:2015-09-11 06:46:03      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

Question

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.

Solution 1 HashMap

Time complexity O(n), space cost O(n)

 1 public class Solution {
 2     public boolean containsDuplicate(int[] nums) {
 3         Map<Integer, Integer> counts = new HashMap<Integer, Integer>();
 4         int length = nums.length;
 5         if (length <= 1)
 6             return false;
 7         for (int i = 0; i < length; i++) {
 8             if (counts.containsKey(nums[i]))
 9                 return true;
10             else
11                 counts.put(nums[i], 1);
12         }
13         return false;
14     }
15 }

Solution 2 Set

Time complexity O(n), space cost O(n)

 1 public class Solution {
 2     public boolean containsDuplicate(int[] nums) {
 3         int length = nums.length;
 4         if (length <= 1)
 5             return false;
 6         Set<Integer> set = new HashSet<Integer>();
 7         for (int i : nums) {
 8             if (!set.add(i))
 9                 return true;
10         }
11         return false;
12     }
13 }

 

Contains Duplicate 解答

标签:

原文地址:http://www.cnblogs.com/ireneyanglan/p/4799829.html

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