您的位置:首页 > 大数据 > 人工智能

Leetcode 217. Contains Duplicate

2016-07-05 17:44 351 查看
题意:就是判断一个整数数组是否存在重复的元素,如果存在返回true,否则返回false
解题思路:采用hashmap方法,来遍历数组,如果map中存在该元素就返回,否则把该元素放入到map中。hashmap的查询复杂度为O(1)

代码:

public class Solution {
public boolean containsDuplicate(int[] nums) {
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
int len=nums.length;
for(int i=0; i< len; i++){
if(map.containsKey(nums[i])){
return true ;
}
map.put(nums[i],0);
}
return false;

}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  LeetCode