码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode OJ:Contains DuplicateII(是否包含重复II)

时间:2015-10-17 16:12:33      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

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长的距离内有没有两个数是相等的,类似一个华栋窗口问题,方法比较简单,使用一个map记下上次数出现的位置就可以了,代码如下:

 1 class Solution {
 2 public:
 3     bool containsNearbyDuplicate(vector<int>& nums, int k) {
 4         map<int, int> ret;
 5         int sz = nums.size();
 6         for (int i = 0; i < sz; ++i){
 7             if (ret.find(nums[i]) != ret.end() && i - ret[nums[i]] <= k)
 8                 return true;
 9             else
10                 ret[nums[i]] = i;
11         }
12         return false;
13     }
14 };

 

LeetCode OJ:Contains DuplicateII(是否包含重复II)

标签:

原文地址:http://www.cnblogs.com/-wang-cheng/p/4887494.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!