Leetcode-219-Contains Duplicate II
程序员文章站
2022-06-03 10:37:59
...
Contains Duplicate II
来自 <https://leetcode.com/problems/contains-duplicate-ii/>
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 jis at most k.
题目解读
给定一个整型数组和整数k,找出数组中是否存在不同的i和j,使得nums[i] = nums[j] ,并且i与j之间的距离最大是k。
解析
使用set,逐个向set中添加元素,使set中的元素个数小于k个。当set中的元素达到k个的时候,将在set中最早加入的删除,然后再向set中添加元素。
Java代码:
public boolean containsNearbyDuplicate(int[] nums, int k) {
if(null == nums)
return false;
Set<Integer> result = new HashSet<Integer>();
int start = 0;
int end =0;
for(int i=0; i<nums.length; i++) {
if(result.contains(nums[i])) {
return true;
} else {
result.add(nums[i]);
end++;
}
if((end - start) > k){
result.remove(nums[start]);
start++;
}
}
return false;
}
算法性能:
推荐阅读
-
【HDUOJ】第1002题 A + B Problem II 纯C语言解法
-
laravel - php向mysql执行insert时,提示“mysql duplicate key”,如何处理?
-
US Travel Tips (OOW, ACE Directors) – Cont. II
-
使用RMAN的DUPLICATE克隆Oracle 10g R2数据库的输出
-
Phenom II CnQ 3.0节能技术详解
-
mysql error:#1062 Duplicate entry ‘***′ for key 1问题解决
-
【剑指 Offer 53 - II】0~n-1中缺失的数字
-
剑指 Offer 53 - II. 0~n-1中缺失的数字
-
剑指offer 53 - II. 0~n-1中缺失的数字
-
剑指 Offer 53 - II. 0~n-1中缺失的数字