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

hashset

时间:2015-11-08 22:21:06      阅读:189      评论: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.

 

 

//RJ

public class Solution {
    public boolean containsDuplicate(int[] nums) {
      int count=0;
        boolean check=false;
        TreeSet<String> h=new TreeSet<String>();
         
        for(int i=0;i<nums.length;i++) {
            h.add(""+nums[i]);
        }
        if(h.size()<nums.length) {
            check=true;
        }
        if(nums.length==1)
            check=false;
         
        return check;
    }
}

//AC

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

hashset

标签:

原文地址:http://www.cnblogs.com/qinyongzhu/p/4948373.html

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