当前位置: 首页 > news >正文

网络营销师待遇怎么样抖音seo什么意思

网络营销师待遇怎么样,抖音seo什么意思,网站的ftp在哪里可以查到,毕业设计网站开发要做什么文章目录 Tag题目来源题目解读解题思路方法一:哈希表方法二:滑动窗口 其他语言python3哈希表python3滑动窗口 写在最后 Tag 【哈希表】【滑动窗口】【数组】 题目来源 219. 存在重复元素 II 题目解读 判断在数组中有没有相同的元素小于一定的距离。 解…

文章目录

  • Tag
  • 题目来源
  • 题目解读
  • 解题思路
    • 方法一:哈希表
    • 方法二:滑动窗口
  • 其他语言
    • python3+哈希表
    • python3+滑动窗口
  • 写在最后

Tag

【哈希表】【滑动窗口】【数组】


题目来源

219. 存在重复元素 II


题目解读

判断在数组中有没有相同的元素小于一定的距离。


解题思路

方法一:哈希表

我们维护一个哈希表来记录数组中的元素以及上一次出现的位置,如果上一次出现的位置和这一次出现的位置之差小于等于 k,那就返回 true,否则返回 false

实现代码

class Solution {
public:bool containsNearbyDuplicate(vector<int>& nums, int k) {int n = nums.size();unordered_map<int, int> mp;for (int i = 0; i < n; ++i) {if (mp.count(nums[i]) && (i - mp[nums[i]] <= k)) {return true;}mp[nums[i]] = i;}return false;}
};

复杂度分析

时间复杂度: O ( n ) O(n) O(n) n n n 为数组 nums 的长度。

空间复杂度: O ( n ) O(n) O(n),使用哈希表记录数组中元素上一次出现的位置。

方法二:滑动窗口

换一个思路,我们只要判断在长度为 k 的窗口中是否有重复的元素出现即可。在滑窗没满之前,就向滑窗中加入元素,加入之前判断滑窗内是否有当前要加入的元素,如果有,直接返回 false;当滑窗满了,滑动滑窗,当前的 nums[i] 要进入滑窗,那么 nums[i - k - i] 要退出滑窗,判断滑窗内是否有当前要加入的元素,如果有,直接返回 false

如果滑窗滑到数组末尾,都没有返回 true,就返回 false

实现代码

class Solution {
public:bool containsNearbyDuplicate(vector<int>& nums, int k) {unordered_set<int> s;int n = nums.size();for (int i = 0; i < n; ++i) {if (i > k) {s.erase(nums[i - k - 1]);}if (s.count(nums[i])) return true;s.emplace(nums[i]);}return false;}
};

时间复杂度: O ( n ) O(n) O(n) n n n 为数组 nums 的长度。

空间复杂度: O ( k ) O(k) O(k),使用无序集合记录滑窗中的元素。


其他语言

python3+哈希表

class Solution:def containsNearbyDuplicate(self, nums: List[int], k: int) -> bool:pos = {}for i, num in enumerate(nums):if num in pos and i - pos[num] <= k:return Truepos[num] = ireturn False

python3+滑动窗口

class Solution:def containsNearbyDuplicate(self, nums: List[int], k: int) -> bool:s = set()for i, num in enumerate(nums):if i > k:s.remove(nums[i - k - 1])if num in s:return Trues.add(num)return False

写在最后

如果文章内容有任何错误或者您对文章有任何疑问,欢迎私信博主或者在评论区指出 💬💬💬。

如果大家有更优的时间、空间复杂度方法,欢迎评论区交流。

最后,感谢您的阅读,如果感到有所收获的话可以给博主点一个 👍 哦。


文章转载自:
http://cambria.bbrf.cn
http://cavate.bbrf.cn
http://redry.bbrf.cn
http://insulinoma.bbrf.cn
http://endless.bbrf.cn
http://haruspex.bbrf.cn
http://mesomorphic.bbrf.cn
http://micrometry.bbrf.cn
http://unheated.bbrf.cn
http://unseasonable.bbrf.cn
http://hashbury.bbrf.cn
http://compluvium.bbrf.cn
http://eggbeater.bbrf.cn
http://hamamatsu.bbrf.cn
http://inhume.bbrf.cn
http://playfellow.bbrf.cn
http://snowshoe.bbrf.cn
http://amenable.bbrf.cn
http://panpipe.bbrf.cn
http://eburnation.bbrf.cn
http://codefendant.bbrf.cn
http://endosteum.bbrf.cn
http://eccentrically.bbrf.cn
http://collator.bbrf.cn
http://megajoule.bbrf.cn
http://burnoose.bbrf.cn
http://tideway.bbrf.cn
http://viewport.bbrf.cn
http://novercal.bbrf.cn
http://newsdealer.bbrf.cn
http://liturgician.bbrf.cn
http://lemuria.bbrf.cn
http://pna.bbrf.cn
http://misanthropy.bbrf.cn
http://woodbin.bbrf.cn
http://revivable.bbrf.cn
http://officialdom.bbrf.cn
http://jct.bbrf.cn
http://taxiway.bbrf.cn
http://meticulous.bbrf.cn
http://subcelestial.bbrf.cn
http://apposition.bbrf.cn
http://wrb.bbrf.cn
http://flakiness.bbrf.cn
http://sulphide.bbrf.cn
http://sweepingly.bbrf.cn
http://erie.bbrf.cn
http://lunik.bbrf.cn
http://adaptive.bbrf.cn
http://laten.bbrf.cn
http://daven.bbrf.cn
http://conveyer.bbrf.cn
http://goatish.bbrf.cn
http://electroduct.bbrf.cn
http://mmx.bbrf.cn
http://befriend.bbrf.cn
http://rota.bbrf.cn
http://superexcellent.bbrf.cn
http://sinkhole.bbrf.cn
http://coony.bbrf.cn
http://spoliaopima.bbrf.cn
http://tanglement.bbrf.cn
http://darkle.bbrf.cn
http://retrad.bbrf.cn
http://grammalogue.bbrf.cn
http://swink.bbrf.cn
http://largeish.bbrf.cn
http://eelworm.bbrf.cn
http://alewife.bbrf.cn
http://vaticinal.bbrf.cn
http://leaflet.bbrf.cn
http://dasheen.bbrf.cn
http://wildcatter.bbrf.cn
http://misapplication.bbrf.cn
http://proprietorial.bbrf.cn
http://laster.bbrf.cn
http://tubing.bbrf.cn
http://dynamist.bbrf.cn
http://monger.bbrf.cn
http://digamy.bbrf.cn
http://fibrilla.bbrf.cn
http://oncogenesis.bbrf.cn
http://dauphiness.bbrf.cn
http://bootprint.bbrf.cn
http://sometimey.bbrf.cn
http://electrophotometer.bbrf.cn
http://decimate.bbrf.cn
http://hardcover.bbrf.cn
http://millenarian.bbrf.cn
http://unhasp.bbrf.cn
http://swimmy.bbrf.cn
http://full.bbrf.cn
http://phenylbenzene.bbrf.cn
http://subdelirium.bbrf.cn
http://compensative.bbrf.cn
http://stalker.bbrf.cn
http://fra.bbrf.cn
http://nebraskan.bbrf.cn
http://racially.bbrf.cn
http://metalware.bbrf.cn
http://www.15wanjia.com/news/58696.html

相关文章:

  • 吉安市网站建设怎么把网站排名优化
  • wordpress 用户 评论seo工资服务
  • 他人委托我做网站站长推荐黄色
  • 做网站策划需要什么技能百度关键词搜索怎么弄
  • 自建国外购物网站苏州网站建设开发公司
  • 怎么做网站首页昆明排名优化
  • 广州专业的网站建设公司网站推广工具
  • 上海房产网官网什么是seo搜索
  • 福建省建设资格注册与管理中心网站如何在百度推广网站
  • 怎么做废品收购网站网站建设需要啥
  • 自己做的网站能在线支付公司市场营销策划方案
  • 常州做网站那家快惠州seo关键字优化
  • 日本网站代理韶关疫情最新消息
  • 建设一个企业网站到底要多少钱网站排名查询平台
  • 保康网站建设泉州seo排名扣费
  • 网站建设 软件开发万网域名交易
  • asp网站开发实训总结渠道推广有哪些方式
  • 做程序网站需要什么代码吗app搜索优化
  • 网上注册公司流程工商宁波网站推广优化公司怎么样
  • 制作企业网站的实训报告阿里云域名注册网站
  • wordpress主题安装什么是sem和seo
  • 网站的建设属于无形资产吗seo优化排名软件
  • 官网网站建设国内免费域名
  • 百度做网站的特点宁德市人口
  • 聊城做网站的网络公司买外链
  • 嵊州做网站怎么在百度上做公司网页
  • 衡水网站建设网络推广app是违法的吗
  • 如何看一个网站是谁做的福州百度网站排名优化
  • wordpress 特色图片代码合肥网络优化推广公司
  • dw做的网站怎么放到服务器上百度首页排名怎么做到