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

leetcode 219. Contains Duplicate II

2016-06-06 15:10 435 查看

题目

Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the difference between i and j is at most k.

解1(超时)

public class Solution {
public boolean containsNearbyDuplicate(int[] nums, int k) {

if(k<1||nums.length<2||nums==null)
return false;

for(int i=0;i<nums.length-1-k;i++){
for(int j=1;j<=k;j++){
if(nums[i]==nums[i+j]){
return true;
}
}
}

return false;
}
}


解2

public class Solution {
public boolean containsNearbyDuplicate(int[] nums, int k) {
if(nums==null || nums.length<2) return false;
//key=int, val=index
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for(int i=0; i<nums.length; i++) {
if(map.containsKey(nums[i])) {
int j = map.get(nums[i]);
if(i-j<=k)
return true;
else{
map.remove(nums[j]);
map.put(nums[i], i);
}
} else {
map.put(nums[i], i);
}
}
return false;
}
}


参考链接

http://blog.csdn.net/xudli/article/details/46236267
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode