Leetcode 220.存在重复元素III

Posted kexinxin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 220.存在重复元素III相关的知识,希望对你有一定的参考价值。

存在重复元素III

给定一个整数数组,判断数组中是否有两个不同的索引 ij,使得 nums [i] 和 nums [j] 的差的绝对值最大为 t,并且 ij 之间的差的绝对值最大为 ?

示例 1:

输入: nums = [1,2,3,1], k= 3, t = 0

输出: true

示例 2:

输入: nums = [1,0,1,1], k=1, t = 2

输出: true

示例 3:

输入: nums = [1,5,9,1,5,9], k = 2, t = 3

输出: false

 1 import java.util.TreeSet;
 2 
 3 public class Solution{
 4     public boolean containsNearbyAlmostDuplicate(int[] nums,int k,int t){
 5         if(nums==null||nums.length==0||k<=0) return false;
 6         TreeSet<Long> ts=new TreeSet();
 7         for(int i=0;i<nums.length;i++){
 8             Long right=ts.floor((long)nums[i]+t);
 9             Long left=ts.ceiling((long)nums[i]-t);
10             if(right!=null&&left!=null&&right>=left) return true;
11             ts.add((long)nums[i]);
12             if(i>=k)//i>k说明nums[i]之前至少已经有k个不相同的元素(否则早就返回true)
13                 ts.remove((long)nums[i-k]);
14         }
15         return false;
16     }
17 }

 

 

以上是关于Leetcode 220.存在重复元素III的主要内容,如果未能解决你的问题,请参考以下文章

281.LeetCode | 220. 存在重复元素 III

Leetcode No.220 存在重复元素 III(桶排序)

Leetcode No.220 存在重复元素 III(桶排序)

LeetCode刷题模版:211 - 220

LeetCode刷题模版:211 - 220

LeetCode刷题模版:211 - 220