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

[leetcode]Contains Duplicate II

2015-06-12 16:03 337 查看


Contains Duplicate II

Given an array of integers and an integer k, find out whether there there are two distinct indices i and j in the array such that nums[i]
= nums[j] and the difference between iand j is at most k.
题意:给出一组整数,从中找出是否存在下标i,j之间使得nums[i]=nums[j]并且两个下标之间存在至多k个不同元素。

class Solution {
public:
bool containsNearbyDuplicate(vector<int>& nums, int k) {
map<int, vector<int> > mivi;

for(int i = 0; i < nums.size(); i++){
mivi[nums[i]].push_back(i);
if(mivi[nums[i]].size() > 1){
vector<int> v = mivi[nums[i]];
if(v[v.size() - 1] - v[v.size() - 2] <= k) return true;
}
}

return false;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: