1 题目
剑指 Offer II 057. 值和下标之差都在给定的范围内
2 代码实现
class Solution {
public:
bool containsNearbyAlmostDuplicate(vector<int>& nums, int k, int t) {
unordered_map<int, unordered_set<int>> m;
int n = nums.size();
for (int i=0;i<n;++i)
{
m[nums[i]].insert(i);
}
//先做映射再排序,顺序不能反
std::sort(nums.begin(), nums.end());
for (int i=0;i<n;++i)
{
for (int j=i+1;j<n;++j)
{
if (abs((long)nums[i]-(long)nums[j]) <= t)
{
if (m.count(nums[j]))
{
for (auto& index1 : m[nums[i]])
{
for (auto& index2 : m[nums[j]])
{
if (index1 != index2 && abs(index1 - index2) <= k)
return true;
}
}
}
}
else
{
break;//由于已经对nums排序,所以如果当前差值超过了t,后面的差值肯定也会超过t,所以可以提前退出内部的for循环
}
}
}
return false;
}
};
本题可以用滑动窗口来进行解决,具体参考:LeetCode-滑动窗口_hclbeloved的博客-CSDN博客