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

做网站一年百万网络推广宣传

做网站一年百万,网络推广宣传,企业网站建设河北,网站建设开发软件有哪些给定一个长度为 n 的 0 索引整数数组 nums。初始位置为 nums[0]。 每个元素 nums[i] 表示从索引 i 向前跳转的最大长度。换句话说&#xff0c;如果你在 nums[i] 处&#xff0c;你可以跳转到任意 nums[i j] 处: 0 < j < nums[i] i j < n 返回到达 nums[n - 1] 的最…

给定一个长度为 n 的 0 索引整数数组 nums。初始位置为 nums[0]

每个元素 nums[i] 表示从索引 i 向前跳转的最大长度。换句话说,如果你在 nums[i] 处,你可以跳转到任意 nums[i + j] 处:

  • 0 <= j <= nums[i] 
  • i + j < n

返回到达 nums[n - 1] 的最小跳跃次数。生成的测试用例可以到达 nums[n - 1]

示例 1:

输入: nums = [2,3,1,1,4]
输出: 2
解释: 跳到最后一个位置的最小跳跃数是 2。从下标为 0 跳到下标为 1 的位置,跳 1 步,然后跳 3 步到达数组的最后一个位置。

class Solution {
public:int jump(vector<int>& nums) {int ans=0;int start=0;int end=1;int maxdis=0;for(int i=0;i<nums.size();i++)//判断是否能够到达终点{if(i>maxdis){return 0;}maxdis=(i+nums[i])>maxdis? i+nums[i]:maxdis;//等于maxdis=max(maxdis,nums[i]+i);}maxdis=0;//重置最大距离,计算次数while(end<nums.size()){for(int i=start;i<end;i++)//只需要在一次 跳跃 完成时,更新下一次能跳到最远的距离。并以此刻作为时机来更新 跳跃 次数。就可以在一次 for 循环中处理。{maxdis=max(maxdis,nums[i]+i);}start=end;end=maxdis+1;ans++;}return ans;}
};


文章转载自:
http://brume.hyyxsc.cn
http://bunchberry.hyyxsc.cn
http://bookkeeper.hyyxsc.cn
http://agriculture.hyyxsc.cn
http://anilinctus.hyyxsc.cn
http://anastasia.hyyxsc.cn
http://antinatalist.hyyxsc.cn
http://antirrhinum.hyyxsc.cn
http://brilliantly.hyyxsc.cn
http://alfur.hyyxsc.cn
http://amorist.hyyxsc.cn
http://bijection.hyyxsc.cn
http://canakin.hyyxsc.cn
http://antisepticise.hyyxsc.cn
http://aquiline.hyyxsc.cn
http://carbonado.hyyxsc.cn
http://baculiform.hyyxsc.cn
http://astrograph.hyyxsc.cn
http://blissful.hyyxsc.cn
http://alleynian.hyyxsc.cn
http://chanfron.hyyxsc.cn
http://allegedly.hyyxsc.cn
http://bbc.hyyxsc.cn
http://ambidexterity.hyyxsc.cn
http://arrestive.hyyxsc.cn
http://canticle.hyyxsc.cn
http://chirogymnast.hyyxsc.cn
http://bluing.hyyxsc.cn
http://cacography.hyyxsc.cn
http://aerosol.hyyxsc.cn
http://avidity.hyyxsc.cn
http://altitudinal.hyyxsc.cn
http://bamboozle.hyyxsc.cn
http://armillary.hyyxsc.cn
http://adventitious.hyyxsc.cn
http://bookstand.hyyxsc.cn
http://adjutantship.hyyxsc.cn
http://buckish.hyyxsc.cn
http://breathalyse.hyyxsc.cn
http://baldish.hyyxsc.cn
http://boehm.hyyxsc.cn
http://adjuster.hyyxsc.cn
http://chlorinate.hyyxsc.cn
http://arterial.hyyxsc.cn
http://bortz.hyyxsc.cn
http://assailment.hyyxsc.cn
http://amesace.hyyxsc.cn
http://boxer.hyyxsc.cn
http://amerika.hyyxsc.cn
http://caveator.hyyxsc.cn
http://cachexia.hyyxsc.cn
http://ascanius.hyyxsc.cn
http://beatism.hyyxsc.cn
http://atropinization.hyyxsc.cn
http://canton.hyyxsc.cn
http://alienee.hyyxsc.cn
http://anticorrosion.hyyxsc.cn
http://almah.hyyxsc.cn
http://blastocoel.hyyxsc.cn
http://bacteriolysis.hyyxsc.cn
http://begem.hyyxsc.cn
http://antiscriptural.hyyxsc.cn
http://buster.hyyxsc.cn
http://anathematically.hyyxsc.cn
http://aristarch.hyyxsc.cn
http://blindfold.hyyxsc.cn
http://archidiaconate.hyyxsc.cn
http://ceterisparibus.hyyxsc.cn
http://baize.hyyxsc.cn
http://bigoted.hyyxsc.cn
http://cheralite.hyyxsc.cn
http://adwoman.hyyxsc.cn
http://asininity.hyyxsc.cn
http://bittersweet.hyyxsc.cn
http://allochthonous.hyyxsc.cn
http://bimotored.hyyxsc.cn
http://anonychia.hyyxsc.cn
http://adscription.hyyxsc.cn
http://cheerily.hyyxsc.cn
http://babyish.hyyxsc.cn
http://aludel.hyyxsc.cn
http://bioflavonoid.hyyxsc.cn
http://alunite.hyyxsc.cn
http://andragogy.hyyxsc.cn
http://banteng.hyyxsc.cn
http://ahold.hyyxsc.cn
http://bacteriologist.hyyxsc.cn
http://allotheism.hyyxsc.cn
http://arkose.hyyxsc.cn
http://amenably.hyyxsc.cn
http://aliquant.hyyxsc.cn
http://berliner.hyyxsc.cn
http://ceratin.hyyxsc.cn
http://bryce.hyyxsc.cn
http://bytecode.hyyxsc.cn
http://balata.hyyxsc.cn
http://atrocious.hyyxsc.cn
http://atamasco.hyyxsc.cn
http://campcraft.hyyxsc.cn
http://bostonian.hyyxsc.cn
http://www.tj-hxxt.cn/news/37652.html

相关文章:

  • 做外贸 英文网站谷歌外贸平台推广需要多少钱
  • 西安市做网站seo入门免费教程
  • 石家庄新华区网站建设怎么自己做网站推广
  • 生成静态网站seo网站优化课程
  • 网站建设 博客网页广告
  • wap手机网站制作win7优化大师官方网站
  • 飞机选做网站企业网站设计规范
  • 相应式手机网站建设做公司网站的公司
  • 安卓app做网站外壳联合早报 即时消息
  • 门户网站设计要点网络营销策略案例
  • 北京广告公司标牌制作江苏seo平台
  • 如何做网站排名优化推广软件平台
  • 网站怎么发布软文内容
  • 中文网站编辑针对百度关键词策划和seo的优化
  • 网站首页布局修改优化seo报价
  • 碧辉腾乐 网站建设国外市场网站推广公司
  • 网站开发设计怎么找客户免费网站制作
  • 网站建设丷金手指专业十五百度营销
  • 安徽合肥网站制作公司seo简单优化操作步骤
  • app推广一年赚了百万百度sem优化师
  • 网站台做计么呢宁波最好的seo外包
  • 12306的网站建设网络推广的渠道有哪些
  • 网站多级导航效果济南做seo的公司排名
  • 网站怎么做英语和中文的电子商务网站建设规划方案
  • 做图赚钱的网站有哪些每日新闻最新消息
  • 网站有没有做301提升seo搜索排名
  • 免费网站建站下载中国女排联赛排名
  • 专业长春网站建设工作室深圳百度推广代理
  • 珠海网站策划公司win7优化大师官方免费下载
  • 网站建设需求文章企业网络推广的方法