這是木又陪伴你的第58天html
今天分享leetcode解題第37篇文章,是leetcode第219題—存在重複元素 II(Contains Duplicate II),地址是:https://leetcode-cn.com/problems/contains-duplicate-ii/python
【英文題目】(學習英語的同時,更能理解題意喲~)c++
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 absolute difference between iand j is at most k.數組
Example 1:微信
Input: nums = [1,2,3,1], k = 3
Output: true
Example 2:app
Input: nums = [1,0,1,1], k = 1
Output: true
【中文題目】學習
給定一個整數數組和一個整數 k,判斷數組中是否存在兩個不一樣的索引 i 和 j,使得 nums [i] = nums [j],而且 i 和 j 的差的絕對值最大爲 k。ui
示例 1:url
輸入: nums = [1,2,3,1], k = 3
輸出: true
示例 2:spa
輸入: nums = [1,0,1,1], k = 1
輸出: true
【思路】
本題與【T36-存在重複元素】相似,兩種方法:一是暴力破解,二是使用hash表。
暴力破解:使用兩層for循環,查找是否有元素知足條件。
hash表:key爲元素,value爲元素的下標,當某個元素存在hash表中,則判斷是否知足條件,若是不知足,則更新value值。
【代碼】
python版本
class Solution(object):
def containsNearbyDuplicate(self, nums, k):
"""
:type nums: List[int]
:type k: int
:rtype: bool
"""
d = {}
for i, n in enumerate(nums):
if n in d and i - d[n] <= k:
return True
d[n] = i
return False
C++版本
class Solution {
public:
bool containsNearbyDuplicate(vector<int>& nums, int k) {
map<int, int> d;
for(int i=0; i<nums.size(); i++){
if(d.find(nums[i]) != d.end() && i - d[nums[i]] <= k)
return true;
d[nums[i]] = i;
}
return false;
}
};
相關文章:
T36-存在重複元素
給我好看
本文分享自微信公衆號 - 木又AI幫(gh_eaa31cab4b91)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。