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

217. Contains Duplicate

时间:2016-09-14 09:30:54      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

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.

书看的头疼,上来刷两道。加州的破网也是无力吐槽,家里的网慢就算了,马德学校的网也卡!!。

Solution1:

思路:解法太多了,来两种。

public class Solution {
    public boolean containsDuplicate(int[] nums) {
        if(nums.length==0||nums.length==1)
        {
            return false;
        }
        Arrays.sort(nums);
        for(int i=1;i<nums.length;i++)
        {
            if(nums[i]==nums[i-1])
            {
                return true;
            }
        }
        return false;
    }
}

Solution2:

HashSet要考虑一下resize的问题,给它定义一个容量即可。

public class Solution {
    public boolean containsDuplicate(int[] nums) {
    Set<Integer> check=new HashSet<Integer>(nums.length);
    for(int i=0;i<nums.length;i++)
    {
        if(check.contains(nums[i]))
        {
            return true;
        }
        else
        {
            check.add(nums[i]);
        }
    }
    return false;
}
}

 

217. Contains Duplicate

标签:

原文地址:http://www.cnblogs.com/Machelsky/p/5870587.html

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