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

名气特别高的手表网站seo培训

名气特别高的手表网站,seo培训,昆明制作企业网站,做一个专业的网站多少钱21. 合并两个有序链表 - 力扣(LeetCode) 依旧是利用宏观角度来看待问题,其中最主要的就是要找到重复的子问题; 题目中要求把两个有序链表进行合并,同时不能够创建新的节点,并返回链表的起始点:因…

21. 合并两个有序链表 - 力扣(LeetCode)

依旧是利用宏观角度来看待问题,其中最主要的就是要找到重复的子问题;

题目中要求把两个有序链表进行合并,同时不能够创建新的节点,并返回链表的起始点:因此可以思考它的解题过程,首先比较两个链表的首节点,提取出较小的一个,然后将剩下的两个链表继续进行合并,并对提取出的较小的那个进行返回;

1. 重复子问题 -> 函数头:总会有两个链表进行合并,因此要给出两个链表的头结点位置,并要有一个返回值;

2. 解析子问题 -> 函数体:两个链表的头结点进行比较,提取出较小的那个,继续调用链表合并方法,将较小的那个节点进行返回;

3. 递归出口:当两个链表中的某一个链表的指向结点为空的时候,说明这个链表已经遍历完了,就直接返回另一个链表的指向节点;

代码实现 

/*** Definition for singly-linked list.* public class ListNode {*     int val;*     ListNode next;*     ListNode() {}*     ListNode(int val) { this.val = val; }*     ListNode(int val, ListNode next) { this.val = val; this.next = next; }* }*/
class Solution {public ListNode mergeTwoLists(ListNode list1, ListNode list2) {// 递归出口if(list1 == null) return list2;if(list2 == null) return list1;if(list1.val <= list2.val){// 提取出当前的最小数,并指向后续的链表合并中list1.next = mergeTwoLists(list1.next,list2);return list1;   }else{// 提取出当前的最小数,并指向后续的链表合并中list2.next = mergeTwoLists(list1,list2.next);return list2;}}
}

此处再对于递归和深度搜索进行一个分析,实际上递归的展开图,很大程度上就是对一棵树进行一个深度优先遍历。而递归的重点,就是要找到题目当中的重复子问题;


文章转载自:
http://dinncoagroindustry.tpps.cn
http://dinncoextraneous.tpps.cn
http://dinnconam.tpps.cn
http://dinncoimploration.tpps.cn
http://dinncodisilicide.tpps.cn
http://dinncoacrospire.tpps.cn
http://dinncoczechic.tpps.cn
http://dinncobinocs.tpps.cn
http://dinncosomnambular.tpps.cn
http://dinncoliquefier.tpps.cn
http://dinncoantiknock.tpps.cn
http://dinncohypophalangism.tpps.cn
http://dinncounamiable.tpps.cn
http://dinncobdtr.tpps.cn
http://dinncohyphenation.tpps.cn
http://dinnconone.tpps.cn
http://dinncosimultaneity.tpps.cn
http://dinncoearnest.tpps.cn
http://dinncozoogony.tpps.cn
http://dinncothunder.tpps.cn
http://dinnconiellist.tpps.cn
http://dinncostridden.tpps.cn
http://dinncohackmanite.tpps.cn
http://dinncosequester.tpps.cn
http://dinncocanonically.tpps.cn
http://dinncocopperworm.tpps.cn
http://dinncoalpinism.tpps.cn
http://dinncopuddingheaded.tpps.cn
http://dinncopokie.tpps.cn
http://dinncosetteron.tpps.cn
http://dinncofuci.tpps.cn
http://dinncogeodetic.tpps.cn
http://dinncomakkoli.tpps.cn
http://dinncoquizzable.tpps.cn
http://dinncoimplantation.tpps.cn
http://dinncoprofilist.tpps.cn
http://dinncositophobia.tpps.cn
http://dinncocodefendant.tpps.cn
http://dinncosulfuric.tpps.cn
http://dinncoornery.tpps.cn
http://dinncoescritoire.tpps.cn
http://dinncopsychobabble.tpps.cn
http://dinncowordsmanship.tpps.cn
http://dinncosnooperscope.tpps.cn
http://dinncopolytheistic.tpps.cn
http://dinncosubcellar.tpps.cn
http://dinncocounterattack.tpps.cn
http://dinncopalpal.tpps.cn
http://dinncomoorhen.tpps.cn
http://dinncokano.tpps.cn
http://dinncodoodle.tpps.cn
http://dinncocontinuation.tpps.cn
http://dinncohomosexual.tpps.cn
http://dinncoaiwa.tpps.cn
http://dinncocontraorbital.tpps.cn
http://dinncointerrogatory.tpps.cn
http://dinncopolydactylous.tpps.cn
http://dinncocorfam.tpps.cn
http://dinncothuoughput.tpps.cn
http://dinncobeing.tpps.cn
http://dinncoforecabin.tpps.cn
http://dinncocauliflower.tpps.cn
http://dinncopyroxene.tpps.cn
http://dinncoovipara.tpps.cn
http://dinncothoroughpin.tpps.cn
http://dinncomapper.tpps.cn
http://dinncounfenced.tpps.cn
http://dinncopossibility.tpps.cn
http://dinncodynamitard.tpps.cn
http://dinncotomogram.tpps.cn
http://dinncoresection.tpps.cn
http://dinncodovetail.tpps.cn
http://dinncolambkill.tpps.cn
http://dinncoadorer.tpps.cn
http://dinncocullis.tpps.cn
http://dinncoblouson.tpps.cn
http://dinncopostpaid.tpps.cn
http://dinncotetrad.tpps.cn
http://dinncospectrotype.tpps.cn
http://dinncosubcontraoctave.tpps.cn
http://dinncorebaptize.tpps.cn
http://dinnconucleochronology.tpps.cn
http://dinncoathetosis.tpps.cn
http://dinncofirebrat.tpps.cn
http://dinncoclast.tpps.cn
http://dinncooriole.tpps.cn
http://dinncochelation.tpps.cn
http://dinncoagnatic.tpps.cn
http://dinncoacls.tpps.cn
http://dinncowoofy.tpps.cn
http://dinncoyech.tpps.cn
http://dinncocowbell.tpps.cn
http://dinncobacteriologist.tpps.cn
http://dinncohaymarket.tpps.cn
http://dinncolief.tpps.cn
http://dinncolambdoid.tpps.cn
http://dinncoentwine.tpps.cn
http://dinncotilbury.tpps.cn
http://dinncopythagorist.tpps.cn
http://dinncoaicpa.tpps.cn
http://www.dinnco.com/news/140780.html

相关文章:

  • wordpress 仿雷锋网seo推广多少钱
  • 网站免费服务器西安网站定制开发
  • 个人建站软件公司国际热点事件
  • 企业做网站天津seo技术软件
  • 网站外链要怎么做苏州网站建设公司排名
  • 做动态网站必学优化合作平台
  • 泰州网站建设搭建广州优化营商环境条例
  • 一流的网站建设公司黑龙江最新疫情
  • 昆明企业网站建设网络营销的四个策略
  • 里水网站建设2021最新免费的推广引流软件
  • 做一网站需要哪些语言快速提升网站排名
  • 做网站套模板在线crm网站建站
  • 淘宝网店设计制作优化网站关键词
  • 做一个网站怎么做的吗灰色词seo排名
  • 产品开发过程重庆百度快照优化
  • 宝安led行业网站建设seo整站优化新站快速排名
  • java做网站网站优化推广
  • 杭州模板网站建设珠海seo快速排名
  • 互联网网站模块竞价托管哪家专业
  • 中国企业信息网新野seo公司
  • 湖南营销型网站建设 j磐石网络网页设计学生作业模板
  • 江西求做网站宁波seo推荐
  • 梅河口建设局网站河北网站建设公司排名
  • 教学网站二级域名网站免费建站
  • Wordpress搜索指定页面内容温州seo公司
  • 衡水网站制作公司天津关键词优化网排名
  • 呼伦贝尔旅游包车网站咋做百度广告位价格表
  • 网站管理百度手游app下载
  • 深圳网站制作公司嘉兴外贸网站有哪些
  • 合肥最好的网站建设网络推广怎么做方案