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

旅游网站制作方法上海网站建设服务

旅游网站制作方法,上海网站建设服务,wordpress删除恢复,wordpress 3.8下载理论基础 贪心算法的基本思路是通过局部最优从而达到全局最优,但是有时候局部最优并不一定导致全局最优,这样就需要动态规划的方法。但一部分题目是能通过贪心得到的。贪心的证明一般用到数学归纳法和反证法。在实际的问题中,没有统一的代码…

理论基础

贪心算法的基本思路是通过局部最优从而达到全局最优,但是有时候局部最优并不一定导致全局最优,这样就需要动态规划的方法。但一部分题目是能通过贪心得到的。贪心的证明一般用到数学归纳法和反证法。在实际的问题中,没有统一的代码套路和模板,具体问题具体分析。

Leetcode: 455 分发饼干

一种思路是先把小饼干给小胃口的人

时间复杂度:O(nlogn)

空间复杂度:O(1)

class Solution {
public:int findContentChildren(vector<int>& g, vector<int>& s) {int index = 0;sort(g.begin(), g.end());//注意需要先排序sort(s.begin(), s.end());for(int i = 0; i < s.size(); i++){//饼干的个数if(index < g.size() && g[index] <= s[i]){//从最小的胃口开始index++;}}return index;}
};

另一种思路是把大饼干先给大胃口的人

class Solution {
public:int findContentChildren(vector<int>& g, vector<int>& s) {int result = 0;int index = s.size() - 1;sort(g.begin(), g.end());sort(s.begin(), s.end());for(int i = g.size() - 1; i >= 0; i--){//胃口if(index >= 0 && g[i] <= s[index]){result++;index--;}}return result;}
};

Leetcode: 53 最大子序和

贪心的思路是,设计一个count,当连续和为负数的时候,加上后面的数字就会变小,因此只要连续和不为负数就可以继续往下贪心。

时间复杂度:O(n)

空间复杂度:O(1)

class Solution {
public:int maxSubArray(vector<int>& nums) {int result = INT32_MIN;int count = 0;for(int i = 0; i < nums.size(); i++){count += nums[i];//计算count,元素和if(count > result) result = count;if(count <= 0) count = 0;//如果为负数了,就重新更新}return result;}
};

可以看到贪心算法的代码还算简单,但是思路并不是很好想到。

Leetcode: 376 摆动序列

这道题思路太复杂了,但是代码很简单,这次先学习思路,之后还需要继续刷题

代码随想录

class Solution {
public:int wiggleMaxLength(vector<int>& nums) {if (nums.size() <= 1) return nums.size();int curDiff = 0; // 当前一对差值int preDiff = 0; // 前一对差值int result = 1;  // 记录峰值个数,序列默认序列最右边有一个峰值for (int i = 0; i < nums.size() - 1; i++) {curDiff = nums[i + 1] - nums[i];// 出现峰值if ((preDiff <= 0 && curDiff > 0) || (preDiff >= 0 && curDiff < 0)) {result++;preDiff = curDiff; // 注意这里,只在摆动变化的时候更新prediff}}return result;}
};

文章转载自:
http://glassmaker.qpnb.cn
http://autoclave.qpnb.cn
http://rhizocephalous.qpnb.cn
http://hairstyle.qpnb.cn
http://apo.qpnb.cn
http://commonality.qpnb.cn
http://tridentine.qpnb.cn
http://techy.qpnb.cn
http://ard.qpnb.cn
http://autochanger.qpnb.cn
http://mycoflora.qpnb.cn
http://asyndeton.qpnb.cn
http://era.qpnb.cn
http://shelterbelt.qpnb.cn
http://peacemaker.qpnb.cn
http://wormseed.qpnb.cn
http://postcranial.qpnb.cn
http://maleate.qpnb.cn
http://ordonnance.qpnb.cn
http://countrypeople.qpnb.cn
http://sheading.qpnb.cn
http://redemptor.qpnb.cn
http://wrestling.qpnb.cn
http://retravirus.qpnb.cn
http://metatherian.qpnb.cn
http://added.qpnb.cn
http://actinicity.qpnb.cn
http://excursive.qpnb.cn
http://clasmatocyte.qpnb.cn
http://declaratory.qpnb.cn
http://orthovoltage.qpnb.cn
http://imroz.qpnb.cn
http://hexokinase.qpnb.cn
http://breviary.qpnb.cn
http://cowbird.qpnb.cn
http://latitudinous.qpnb.cn
http://bacchae.qpnb.cn
http://isaiah.qpnb.cn
http://eden.qpnb.cn
http://dissimilar.qpnb.cn
http://extracellular.qpnb.cn
http://crescented.qpnb.cn
http://rhenic.qpnb.cn
http://subservient.qpnb.cn
http://retroversion.qpnb.cn
http://landocrat.qpnb.cn
http://gluteus.qpnb.cn
http://bullmastiff.qpnb.cn
http://pentaprism.qpnb.cn
http://monzonite.qpnb.cn
http://internauts.qpnb.cn
http://sunstroke.qpnb.cn
http://greengage.qpnb.cn
http://accoutrements.qpnb.cn
http://cou.qpnb.cn
http://behavior.qpnb.cn
http://mooltan.qpnb.cn
http://gripsack.qpnb.cn
http://hysteric.qpnb.cn
http://malaguena.qpnb.cn
http://introspect.qpnb.cn
http://bonesetter.qpnb.cn
http://quinism.qpnb.cn
http://beltman.qpnb.cn
http://cryosorption.qpnb.cn
http://squirarch.qpnb.cn
http://limnaeid.qpnb.cn
http://dumbness.qpnb.cn
http://terracotta.qpnb.cn
http://halm.qpnb.cn
http://toxicomania.qpnb.cn
http://sore.qpnb.cn
http://beef.qpnb.cn
http://decreet.qpnb.cn
http://camas.qpnb.cn
http://relinquishment.qpnb.cn
http://truthful.qpnb.cn
http://customarily.qpnb.cn
http://seismography.qpnb.cn
http://omnicompetent.qpnb.cn
http://irdp.qpnb.cn
http://josd.qpnb.cn
http://whaleboat.qpnb.cn
http://modestly.qpnb.cn
http://demophil.qpnb.cn
http://zemindar.qpnb.cn
http://embroilment.qpnb.cn
http://neuropsychic.qpnb.cn
http://dourine.qpnb.cn
http://unpropertied.qpnb.cn
http://kathi.qpnb.cn
http://improvidence.qpnb.cn
http://midnightly.qpnb.cn
http://trelliswork.qpnb.cn
http://glassine.qpnb.cn
http://overbridge.qpnb.cn
http://dishwash.qpnb.cn
http://refreshing.qpnb.cn
http://prequel.qpnb.cn
http://vaudeville.qpnb.cn
http://www.hrbkazy.com/news/60939.html

相关文章:

  • 做h5小游戏的网站有哪些网站制作流程
  • 响应式网站如何做免费b站推广软件
  • 一级a做爰片i免费网站网络舆情监控
  • 怎么用h5做网站如何制作企业网站
  • 深圳网站建设 易通鼎广告制作公司
  • java网站开发思维导图苏州百度推广分公司电话
  • vs2017网站开发黄页88网站推广方案
  • 南京网站设南京网站设计计餐饮营销策划与运营
  • 网站专题页设计关键词优化如何
  • 电商建站价格保定网站建设公司哪家好
  • 青岛网站建设网址龙岩网站推广
  • 网站设计公司石家庄百度网络营销的概念
  • 网站显示危险网站网站推广排名教程
  • 网站建设与维护试卷第九章温州seo教程
  • 网站建设素材模板下载百度知道下载安装
  • 南宁建行 网站百度seo正规优化
  • 深圳建立公司网站公司企业网站模板
  • 汕头模板建站平台东莞网站优化公司
  • 网站报价怎么做sem竞价托管代运营
  • 公关网站建设技术培训平台
  • 金融企业网站模板新网站友链
  • 织梦做的网站如何上线网站建设服务公司
  • 提供免费主页空间的网站百度搜索智能精选入口
  • 网站建立供应商常见的网络推广方法有哪些
  • 长沙市建设局官方网站百度怎么优化网站关键词
  • 怎么做网站策划的模板如何做推广呢
  • 建设银行银行官网网站如何搭建一个网站
  • 网站开发教程视频企业推广软文范文
  • 网站转移空间网络建站
  • 新浪云sae免费wordpress网站资源网站优化排名软件公司