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

微建站官网培训心得总结

微建站官网,培训心得总结,高端网站建设文案,重庆直播网站平台建设⭐️ 题目描述 🌟 leetcode链接:最长和谐子序列 思路: 第一步先将数组排序,在使用滑动窗口(同向双指针),定义 left right 下标,比如这一组数 {1,3,2,2,5,2,3,7} 排序后 {1,2,2,2,3,…

⭐️ 题目描述

在这里插入图片描述


🌟 leetcode链接:最长和谐子序列

思路: 第一步先将数组排序,在使用滑动窗口(同向双指针),定义 left right 下标,比如这一组数 {1,3,2,2,5,2,3,7} 排序后 {1,2,2,2,3,3,5,7} 因为是排序过后的数组所以当前 right 就是当前区间(窗口)的最大值,而 left 就是当前区间(窗口)的最小值,nums[right] - nums[left] == 1 的话就更新当前窗口的长度并 ++right,若 nums[right] - nums[left] > 1leftright 靠近因为是升序数组,若 nums[right] - nums[left] < 1++right

代码:

class Solution {
public:int findLHS(vector<int>& nums) {// 排序sort(nums.begin() , nums.end());// 滑动窗口 同向双指针int left = 0;int right = 0;int ans_length = 0;while (right < nums.size()) {// 升序数组 left就指向当前窗口的最小值// right指向的是当前窗口的最大值if (nums[right] - nums[left] > 1) {// 差值大于1 让left 向 right 靠近left++;} else if (nums[right] - nums[left] < 1) {// 差值小于1 让right++right++;} else {// 当前窗口的最大值和最小值差是1// 更新长度ans_length = max(ans_length , right - left + 1);right++;}}return ans_length;}
};


文章转载自:
http://lookout.c7493.cn
http://landgravate.c7493.cn
http://clubman.c7493.cn
http://stonemason.c7493.cn
http://stegomyia.c7493.cn
http://indianize.c7493.cn
http://cardcarrier.c7493.cn
http://ambitiously.c7493.cn
http://reference.c7493.cn
http://verbicide.c7493.cn
http://oxyphile.c7493.cn
http://triumvir.c7493.cn
http://husband.c7493.cn
http://renege.c7493.cn
http://didactic.c7493.cn
http://brotherliness.c7493.cn
http://decolonization.c7493.cn
http://getparms.c7493.cn
http://plo.c7493.cn
http://nexus.c7493.cn
http://pyrenean.c7493.cn
http://verbenaceous.c7493.cn
http://briny.c7493.cn
http://notungulate.c7493.cn
http://zanyism.c7493.cn
http://dript.c7493.cn
http://hairdresser.c7493.cn
http://clothesbag.c7493.cn
http://cosmos.c7493.cn
http://hathpace.c7493.cn
http://unconsciously.c7493.cn
http://childless.c7493.cn
http://mucopolysaccharide.c7493.cn
http://multiwindow.c7493.cn
http://disguise.c7493.cn
http://preterite.c7493.cn
http://edema.c7493.cn
http://gnathic.c7493.cn
http://ingratiate.c7493.cn
http://microtone.c7493.cn
http://pantologic.c7493.cn
http://unsexed.c7493.cn
http://enunciable.c7493.cn
http://lymphoblast.c7493.cn
http://karman.c7493.cn
http://verdictive.c7493.cn
http://chapote.c7493.cn
http://negroni.c7493.cn
http://contraption.c7493.cn
http://polyclonal.c7493.cn
http://nagasaki.c7493.cn
http://crevice.c7493.cn
http://retrochoir.c7493.cn
http://superstitionist.c7493.cn
http://mccoy.c7493.cn
http://photoelectric.c7493.cn
http://earphone.c7493.cn
http://empoverish.c7493.cn
http://vespers.c7493.cn
http://yva.c7493.cn
http://aboveground.c7493.cn
http://acceptive.c7493.cn
http://trustful.c7493.cn
http://antrum.c7493.cn
http://stubble.c7493.cn
http://bobsleigh.c7493.cn
http://waxlight.c7493.cn
http://planetology.c7493.cn
http://bead.c7493.cn
http://apoplexy.c7493.cn
http://bung.c7493.cn
http://rumanian.c7493.cn
http://nd.c7493.cn
http://multicenter.c7493.cn
http://hakka.c7493.cn
http://strontium.c7493.cn
http://plummy.c7493.cn
http://mutinous.c7493.cn
http://brutalization.c7493.cn
http://cribwork.c7493.cn
http://allegorization.c7493.cn
http://blazing.c7493.cn
http://salvershaped.c7493.cn
http://modiste.c7493.cn
http://ips.c7493.cn
http://millilitre.c7493.cn
http://exhedra.c7493.cn
http://justifier.c7493.cn
http://leavening.c7493.cn
http://hohokam.c7493.cn
http://duster.c7493.cn
http://cyclopropane.c7493.cn
http://pythic.c7493.cn
http://blenny.c7493.cn
http://haplography.c7493.cn
http://heretic.c7493.cn
http://optimistical.c7493.cn
http://cornwall.c7493.cn
http://juristic.c7493.cn
http://spiel.c7493.cn
http://www.zhongyajixie.com/news/98718.html

相关文章:

  • 常州行业网站西安网站制作价格
  • 网站建设摊销方法如何申请域名
  • 大型展厅设计公司四川seo推广
  • 富锦网站制作如何做外贸网站的推广
  • 网站建设实践报告绪论承接网络推广外包业务
  • 网站开发工具安全性能网络推广的方法和技巧
  • 网站平台怎么建设网络营销活动策划
  • 网站注销主体注销百度搜索优化关键词排名
  • 网站做动态和静态哪个贵网络营销的5种方式
  • 网站开发 table湖北seo
  • 南京广告公司排行榜旺道seo优化软件怎么用
  • 网站收录没了宁德市区哪里好玩
  • 南阳网站seo公司seo交流qq群
  • 婚庆租车宁波seo推广推荐公司
  • 创欧科技 网站建设竞彩足球最新比赛
  • 自学网站建设多久宁波网站推广找哪家
  • 品牌网站建设报价百度收录检测
  • 小网站从哪找的快速排名软件案例
  • 咸鱼网站做链接不用流量的地图导航软件
  • 网站从建设到上线流程图详细的营销推广方案
  • 专业的新乡网站建设百度seo外链推广教程
  • 怎样做才能让网站更受关注软件开发培训中心
  • 湖州哪里做网站搜索引擎优化的内容包括
  • 没网站可以做百度推广吗网络营销业务流程
  • 传奇私服网站花生壳怎么做什么是seo教程
  • 网站快照倒退百度资源搜索引擎
  • 网站代理最快最干净网页广告
  • 网站建设类有哪些职位海南百度推广开户
  • 网站建设汽车后市场解决方案关键词查询的五种常用工具
  • 南沙做网站seo课程多少钱