-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathContainsDuplicateIISln.cs
37 lines (35 loc) · 1.11 KB
/
ContainsDuplicateIISln.cs
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
/* ==============================================================================
* 功能描述:ContainsDuplicateIISln
* 创 建 者:gz
* 创建日期:2017/5/3 18:25:02
* ==============================================================================*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Array.Lib
{
/// <summary>
/// ContainsDuplicateIISln
/// </summary>
public class ContainsDuplicateIISln
{
public bool ContainsNearbyDuplicate(int[] nums, int k)
{
Dictionary<int, int> dict = new Dictionary<int, int>(); //元素值,索引
for (int i = 0; i < nums.Length; i++)
{
if (dict.ContainsKey(nums[i]))
{
if (Math.Abs(i - dict[nums[i]]) <= k)
return true;
dict.Remove(nums[i]); //移调
dict.Add(nums[i], i);//添加最新的
continue;
}
dict.Add(nums[i], i);
}
return false;
}
}
}