-
Notifications
You must be signed in to change notification settings - Fork 0
/
Q66_存在重复元素.java
66 lines (61 loc) · 1.52 KB
/
Q66_存在重复元素.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.algorithm.demo.array;
import java.util.HashMap;
import java.util.HashSet;
/**
* 219. 存在重复元素 II
* 给定一个整数数组和一个整数 k,判断数组中是否存在两个不同的索引 i 和 j,使得 nums [i] = nums [j],并且 i 和 j 的差的 绝对值 至多为 k。
* <p>
* <p>
* <p>
* 示例 1:
* <p>
* 输入: nums = [1,2,3,1], k = 3
* 输出: true
* 示例 2:
* <p>
* 输入: nums = [1,0,1,1], k = 1
* 输出: true
* 示例 3:
* <p>
* 输入: nums = [1,2,3,1,2,3], k = 2
* 输出: false
*/
public class Q66_存在重复元素 {
/**
* 暴力求解 容易超时
*
* @param nums
* @param k
* @return
*/
public boolean containsNearbyDuplicate(int[] nums, int k) {
for (int i = 0; i < nums.length - 1; i++) {
for (int j = i + 1; j < nums.length; j++) {
if (nums[i] == nums[j] && Math.abs(i - j) <= k) {
return true;
}
}
}
return false;
}
/**
* 散列表
*
* @param nums
* @param k
* @return
*/
public boolean containsNearbyDuplicate2(int[] nums, int k) {
HashSet<Integer> hashSet = new HashSet<>();
for (int i = 0; i < nums.length; i++) {
if (hashSet.contains(nums[i])) {
return true;
}
hashSet.add(nums[i]);
if (hashSet.size() > k) {
hashSet.remove(nums[i - k]);
}
}
return false;
}
}