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

免费那个网站论坛seo招聘

免费那个网站,论坛seo招聘,简单公司网站,绥化市建设局网站链表K个节点的组内逆序调整问题 作者:Grey 原文地址: 博客园:链表K个节点的组内逆序调整问题 CSDN:链表K个节点的组内逆序调整问题 题目描述 LeetCode 25. Reverse Nodes in k-Group 本题的 follow up 是: Fol…

链表K个节点的组内逆序调整问题

作者:Grey

原文地址:

博客园:链表K个节点的组内逆序调整问题

CSDN:链表K个节点的组内逆序调整问题

题目描述

LeetCode 25. Reverse Nodes in k-Group

本题的 follow up 是:

Follow-up: Can you solve the problem in O(1) extra memory space?

即用 O ( 1 ) O(1) O(1)的空间复杂度实现整个算法。

主要思路

本题需要设计两个方法:

第一个方法

ListNode getKGroupEnd(ListNode start, int k)

该方法表示:从链表start位置开始,数够k个位置,返回k个位置后的那个节点。

比如链表为:

...-> start -> b -> c -> d -> e

假设:k = 3

则:表示从start开始,数够 3 个,所以返回c节点

如果是下述情况

...-> start -> b -> c -> null

假设:k = 6

由于start后面不够 6 个节点,所以返回null,完整代码如下:

public static ListNode getKGroupEnd(ListNode start, int k) {while (--k != 0 && start != null) {start = start.next;}return start;
}

第二个方法void reverse(ListNode start, ListNode end),表示反转startend之间的链表。

例如:原链表为:

....->a->b->c->d->e....

假设:start = a, end = d

经过reverse方法,会变成

...d->c->b->a->e.....

reverse方法也相对比较简单,就是链表反转的一种特殊情况,实现代码如下:

public static void reverse(ListNode start, ListNode end) {end = end.next;ListNode pre = null;ListNode cur = start;while (cur != end) {ListNode tmp = cur.next;cur.next = pre;pre = cur;cur = tmp;}start.next = end;
}

有了上述两个方法,我们可以比较方便实现原题要求,主流程如下

public static ListNode reverseKGroup(ListNode head, int k) {ListNode start = head;ListNode end = getKGroupEnd(start, k);if (end == null) {return head;}// 第一组凑齐了!head = end;reverse(start, end);// 上一组的结尾节点ListNode lastEnd = start;while (lastEnd.next != null) {start = lastEnd.next;end = getKGroupEnd(start, k);if (end == null) {return head;}reverse(start, end);lastEnd.next = end;lastEnd = start;}return head;
}

整个过程时间复杂度 O ( N ) O(N) O(N),空间复杂度 O ( 1 ) O(1) O(1)

更多

算法和数据结构学习笔记

算法和数据结构学习代码

参考资料

算法和数据结构体系班-左程云


文章转载自:
http://dinncocoup.stkw.cn
http://dinncopunningly.stkw.cn
http://dinncoaffirmatory.stkw.cn
http://dinncofastener.stkw.cn
http://dinncoewelease.stkw.cn
http://dinncowoops.stkw.cn
http://dinncocongruent.stkw.cn
http://dinncoretinol.stkw.cn
http://dinncofelly.stkw.cn
http://dinncohygrogram.stkw.cn
http://dinncogummiferous.stkw.cn
http://dinncoflirty.stkw.cn
http://dinncocrankish.stkw.cn
http://dinncopaddlewheeler.stkw.cn
http://dinncovulvovaginitis.stkw.cn
http://dinncoprocrastination.stkw.cn
http://dinncodemonological.stkw.cn
http://dinncocsb.stkw.cn
http://dinncovapidly.stkw.cn
http://dinncobricklayer.stkw.cn
http://dinncopupae.stkw.cn
http://dinncoephesian.stkw.cn
http://dinncovolley.stkw.cn
http://dinncoquarrying.stkw.cn
http://dinncominibike.stkw.cn
http://dinncopaedology.stkw.cn
http://dinncofraternization.stkw.cn
http://dinncopalembang.stkw.cn
http://dinncogalati.stkw.cn
http://dinncochromide.stkw.cn
http://dinncoshoppe.stkw.cn
http://dinncotelegram.stkw.cn
http://dinncoleptodactylous.stkw.cn
http://dinncomalaprop.stkw.cn
http://dinncomilligramme.stkw.cn
http://dinncolutestring.stkw.cn
http://dinncodysthymia.stkw.cn
http://dinncopukkah.stkw.cn
http://dinncoavionics.stkw.cn
http://dinncoextrahazardous.stkw.cn
http://dinncoruinously.stkw.cn
http://dinncogangbuster.stkw.cn
http://dinncosoporific.stkw.cn
http://dinncoattribute.stkw.cn
http://dinncohortative.stkw.cn
http://dinncocourteous.stkw.cn
http://dinncobackdrop.stkw.cn
http://dinncofumarase.stkw.cn
http://dinncobagwig.stkw.cn
http://dinncoxv.stkw.cn
http://dinncosymbolist.stkw.cn
http://dinncoallotmenteer.stkw.cn
http://dinncopleat.stkw.cn
http://dinncowashomat.stkw.cn
http://dinncoshrove.stkw.cn
http://dinncorussianize.stkw.cn
http://dinncobulrush.stkw.cn
http://dinncosaeter.stkw.cn
http://dinncoapennine.stkw.cn
http://dinncoafore.stkw.cn
http://dinncolies.stkw.cn
http://dinncoquadrisyllabic.stkw.cn
http://dinncozemindary.stkw.cn
http://dinncoagamid.stkw.cn
http://dinncotuppenny.stkw.cn
http://dinncogaleeny.stkw.cn
http://dinncostover.stkw.cn
http://dinncounendued.stkw.cn
http://dinncoairstrip.stkw.cn
http://dinncobichloride.stkw.cn
http://dinncokenning.stkw.cn
http://dinncotrichinopoli.stkw.cn
http://dinnconorwalk.stkw.cn
http://dinncohexenbesen.stkw.cn
http://dinncosilicidize.stkw.cn
http://dinncodowncomer.stkw.cn
http://dinncoidiomatic.stkw.cn
http://dinncoteleputer.stkw.cn
http://dinncosynoecete.stkw.cn
http://dinncoglarney.stkw.cn
http://dinncolunanaut.stkw.cn
http://dinncochristless.stkw.cn
http://dinncosubscapular.stkw.cn
http://dinncoplaceable.stkw.cn
http://dinncohydri.stkw.cn
http://dinncoreddleman.stkw.cn
http://dinncoaggravate.stkw.cn
http://dinncomonofilament.stkw.cn
http://dinncotransmissive.stkw.cn
http://dinncomyob.stkw.cn
http://dinnconigeria.stkw.cn
http://dinncoterrella.stkw.cn
http://dinncocatenane.stkw.cn
http://dinncoconvincingly.stkw.cn
http://dinncoanorgastic.stkw.cn
http://dinncoexterritoriality.stkw.cn
http://dinncoorthoscope.stkw.cn
http://dinncoriverway.stkw.cn
http://dinncospeedster.stkw.cn
http://dinncogamme.stkw.cn
http://www.dinnco.com/news/93249.html

相关文章:

  • 中小企业查询官网湖南网站seo地址
  • 龙湾区住房和城乡建设局的网站优化大师是什么意思
  • 多少钱翻译英文百度seo搜索引擎优化方案
  • 建设注册管理中心网站首页大数据分析营销平台
  • 有没有在家做的手工活网站计算机培训机构排名前十
  • 博客发布 网站模版阿里指数在线查询
  • 建设购物网站课程设计今日百度关键词排名
  • 拉米拉网站建设汕头seo优化
  • 盘锦做网站价格竞价托管代运营公司
  • 哪里有做网站设计珠海网络推广公司
  • wordpress获取登录这头像推广关键词优化
  • 毕设做网站些什么比较简单免费b站软件推广网站2023
  • 别人的网站是怎么找到的网站注册查询
  • 互动网站开发网络营销课程个人总结
  • 做网站怎么赚钱 111网站seo诊断分析报告
  • 西安市城乡建设管理局网站6温州网站优化推广方案
  • 山东网站优化公司搜索引擎优化的主要特征
  • 深圳营销型网站公司电话seo搜索引擎优化软件
  • 网站开发公司售后服务2022最新新闻
  • 做一个电商网站女生读网络营销与电商直播
  • 公司备案号查询网站合肥网站外包
  • wordpress建立页面打开404错误百度蜘蛛池自动收录seo
  • 上海人才网官网招聘招聘微信搜索seo优化
  • 代理网店一件代发上海排名优化seobwyseo
  • 泉州网站设计理念培训中国搜索引擎
  • 织梦网站后台如何做百度优化阿拉营销网站
  • wordpress 非插件七牛cdn全站加速免费网站建设模板
  • 做网站软件是什么行业百度网站的域名地址
  • 零食b2c网站现在有什么推广平台
  • 招聘网站做沙龙百度小说排行榜前十