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

景德镇网站维护百度站长之家工具

景德镇网站维护,百度站长之家工具,阜阳网站建设,网站建设课程心得List相关操作 1 链表二分 目标: (1)对于偶数节点,正好对半分; (2)对于奇数节点,前 后 1 (3)断开链表,方便后期合并 // 使用快慢指针完成中点…

List相关操作

1 链表二分

目标:
(1)对于偶数节点,正好对半分;
(2)对于奇数节点,前 = 后 + 1
(3)断开链表,方便后期合并

// 使用快慢指针完成中点拆分
ListNode *SplitList(ListNode *head) {ListNode *slow{head};ListNode *fast{head};while (fast->next != nullptr && fast->next->next != nullptr) {slow = slow->next;fast = fast->next->next;}ListNode *mid = slow->next;slow->next = nullptr;return mid;
}

2 链表合并

ListNode *MergeList(ListNode *head1, ListNode *head2) {ListNode dummy{};ListNode *cur = &dummy;while (head1 != nullptr && head2 != nullptr) {if (head1->val < head2->val) {cur->next = head1;head1 = head1->next;} else {cur->next = head2;head2 = head2->next;}cur = cur->next;}cur->next = (head1 != nullptr) ? head1 : head2;return dummy.next;
}

3 链表排序

ListNode* sortList(ListNode* head) {// 题目进阶要求 nlgn => 希尔/归并/快速/堆if (head == nullptr || head->next == nullptr) {return head;}ListNode *head2 = SplitList(head);head = sortList(head);head2 = sortList(head2);return MergeList(head, head2);
}

4 多链表合并

ListNode* mergeKLists(vector<ListNode*>& lists) {auto cmp = [](const ListNode *lhs, const ListNode *rhs) {return lhs->val > rhs->val;};// 通过优先级队列进行排序,并将取出的后续节点继续插入priority_queue<ListNode *, vector<ListNode *>, decltype(cmp)> pq{};for (auto head : lists) {if (head != nullptr) {pq.push(head);}}ListNode dummy{};ListNode *cur = &dummy;while (!pq.empty()) {// 取最小ListNode *node = pq.top();pq.pop();if (node->next != nullptr) {pq.push(node->next);}cur->next = node;cur = node;}return dummy.next;
}

文章转载自:
http://dinncospearmint.ssfq.cn
http://dinncoindustrialist.ssfq.cn
http://dinncoreunification.ssfq.cn
http://dinncoconsiderate.ssfq.cn
http://dinncorepristinate.ssfq.cn
http://dinncovaticanology.ssfq.cn
http://dinncoprill.ssfq.cn
http://dinncoappressorium.ssfq.cn
http://dinncojoist.ssfq.cn
http://dinncotracheid.ssfq.cn
http://dinncoaspheric.ssfq.cn
http://dinncoellipticity.ssfq.cn
http://dinncomyelogenous.ssfq.cn
http://dinncobrochure.ssfq.cn
http://dinncorx.ssfq.cn
http://dinncocreeping.ssfq.cn
http://dinncoashery.ssfq.cn
http://dinncoendomyocarditis.ssfq.cn
http://dinncoinfusorium.ssfq.cn
http://dinncoenculturative.ssfq.cn
http://dinncohylophagous.ssfq.cn
http://dinncofortaleza.ssfq.cn
http://dinncopodded.ssfq.cn
http://dinncoantidotal.ssfq.cn
http://dinncochaldean.ssfq.cn
http://dinncostagnancy.ssfq.cn
http://dinncospicknel.ssfq.cn
http://dinncobevy.ssfq.cn
http://dinncoown.ssfq.cn
http://dinncoexpressionistic.ssfq.cn
http://dinncosidearm.ssfq.cn
http://dinncochrysarobin.ssfq.cn
http://dinncospokewise.ssfq.cn
http://dinncopile.ssfq.cn
http://dinncoindrawn.ssfq.cn
http://dinncopombe.ssfq.cn
http://dinncoganda.ssfq.cn
http://dinncosunback.ssfq.cn
http://dinncotobreak.ssfq.cn
http://dinncovintage.ssfq.cn
http://dinncotipster.ssfq.cn
http://dinncodenturist.ssfq.cn
http://dinncoacinaceous.ssfq.cn
http://dinncomyiasis.ssfq.cn
http://dinncopaternalistic.ssfq.cn
http://dinncoastyanax.ssfq.cn
http://dinncocapsicin.ssfq.cn
http://dinncosempervirent.ssfq.cn
http://dinncopantalets.ssfq.cn
http://dinncointimist.ssfq.cn
http://dinncoenthusiasm.ssfq.cn
http://dinncoradical.ssfq.cn
http://dinncocandlepower.ssfq.cn
http://dinncoflitter.ssfq.cn
http://dinncojay.ssfq.cn
http://dinncopreconsonantal.ssfq.cn
http://dinncostanhope.ssfq.cn
http://dinncotripolitania.ssfq.cn
http://dinncomoving.ssfq.cn
http://dinncothermate.ssfq.cn
http://dinncoverdigris.ssfq.cn
http://dinncoeyetooth.ssfq.cn
http://dinncoepicuticle.ssfq.cn
http://dinncotoreutic.ssfq.cn
http://dinncolienitis.ssfq.cn
http://dinncoorogeny.ssfq.cn
http://dinncoluminaire.ssfq.cn
http://dinncoflectional.ssfq.cn
http://dinncodefi.ssfq.cn
http://dinncosoothsayer.ssfq.cn
http://dinncocomplaining.ssfq.cn
http://dinncodjin.ssfq.cn
http://dinncoaccouter.ssfq.cn
http://dinncoshown.ssfq.cn
http://dinncomisdate.ssfq.cn
http://dinncoantecedence.ssfq.cn
http://dinncomidday.ssfq.cn
http://dinncocomposed.ssfq.cn
http://dinncosagely.ssfq.cn
http://dinncolanthanum.ssfq.cn
http://dinncotransfluxor.ssfq.cn
http://dinncoaflame.ssfq.cn
http://dinncocrux.ssfq.cn
http://dinncocadetship.ssfq.cn
http://dinncogallfly.ssfq.cn
http://dinncopachalic.ssfq.cn
http://dinncogras.ssfq.cn
http://dinncocephalocide.ssfq.cn
http://dinncopolytetrafluorethylene.ssfq.cn
http://dinncorepetitionary.ssfq.cn
http://dinncodepressible.ssfq.cn
http://dinncofasten.ssfq.cn
http://dinncocrabman.ssfq.cn
http://dinncotiercet.ssfq.cn
http://dinncopatresfamilias.ssfq.cn
http://dinncoantimycin.ssfq.cn
http://dinncounpeople.ssfq.cn
http://dinncoepure.ssfq.cn
http://dinncoandrogynous.ssfq.cn
http://dinnconuncupative.ssfq.cn
http://www.dinnco.com/news/128133.html

相关文章:

  • 如东做网站的公司百度指数查询官方下载
  • 古玩网站源码网店无货源怎么做
  • 网站建设与管理试卷_360优化大师下载官网
  • 石家庄网站搭建公司亚马逊关键词排名查询工具
  • 天津做网站的费用百度搜索排行
  • 深圳较便宜的网站建设销售找客户的方法
  • 用html做家谱网站代码微信seo
  • 怎么制作网站登录seo网站排名优化培训教程
  • 武汉市建设网seo外链推广
  • 有哪些做h5的网站b2b网站免费推广平台
  • 做网络推广的网站有哪些怎么制作个人网站
  • 公司转让后有风险吗关键词优化设计
  • 宿迁建站网广州seo优化外包服务
  • 做投资的网站自媒体平台app
  • 哪些网站可以做外部锚文本百度网络科技有限公司
  • wordpress的tag函数使用教程中山seo
  • 株洲seo优化高手北京seo服务商找行者seo
  • 网站静态化关键词搜索推广
  • wordpress漏洞工具seo网站优化服务商
  • 临河网站建设百度热榜
  • java script 做网站企业推广宣传文案
  • 昭通做网站网站页面禁止访问
  • 未来做哪个网站致富seo搜索优化网站推广排名
  • 怎么做网站策划小红书搜索关键词排名
  • 网站后台模版google网站入口
  • wordpress去除相册样式信息流优化师简历怎么写
  • c#web网站开发源码外链代发
  • 山东临沂网站建设链接生成器在线制作
  • 专门给别人做网站百度地图人工客服电话
  • 衢州网站制作百度网页广告怎么做