-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontainsDuplicateII.cpp
54 lines (48 loc) · 1.44 KB
/
containsDuplicateII.cpp
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
// Given an integer array nums and an integer k, return true if there are two distinct indices i and j
// in the array such that nums[i] == nums[j] and abs(i - j) <= k.
// Example 1:
// Input: nums = [1,2,3,1], k = 3
// Output: true
// Example 2:
// Input: nums = [1,0,1,1], k = 1
// Output: true
// Example 3:
// Input: nums = [1,2,3,1,2,3], k = 2
// Output: false
class Solution {
public:
bool containsNearbyDuplicate(vector<int>& nums, int k) {
if (k == 0) {
return false;
}
set<int> Set;
if (k >= nums.size()) {
for (auto itr: nums) {
if (Set.find(itr) == Set.end()) {
Set.insert(itr);
} else {
return true;
}
}
return false;
} else {
for (unsigned int i = 0; i < nums.size(); i++) {
if (i + k > nums.size()) {
//cout<<"CANNOT FURTHER!"<<endl;
break;
}
for (unsigned int j = i; j <= i + k; j++) {
//cout<<"Cycle: "<<nums[j]<<" ";
if (Set.find(nums[j]) != Set.end()) {
return true;
} else {
Set.insert(nums[j]);
}
}
Set.clear();
//cout<<"\n";
}
return false;
}
}
};