新博文地址:Partition List
果然出去玩了一个星期回来状态极差。。。。
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.
You should preserve the original relative order of the nodes in each of the two partitions.
For example,
Given 1->4->3->2->5->2 and x = 3,
return 1->2->2->4->3->5.
You should preserve the original relative order of the nodes in each of the two partitions.
For example,
Given 1->4->3->2->5->2 and x = 3,
return 1->2->2->4->3->5.
码代码时,脑子都不会动了。。。纯粹靠一步步调试AC的。囧啊,找到待分割点,将分割点后所有的小节点,插入分割点当做后驱,并维护分割位置tail。返回时,有一个坑,比如2,1 (x = 2),head = 2,将1插入到2前面时,返回head肯定是不对的,要返回分割点seperator->1,2。我特么在说些什么啊。o(╯□╰)o
等第二遍刷的时候,再把代码优化一下吧
public ListNode partition(ListNode head, int x) { if (head == null || head.next == null) { return head; } ListNode seperator = new ListNode(0); seperator.next = head; boolean isSplit = true; while (seperator.next != null) { if (seperator.next.val >= x) { break; } seperator = seperator.next; isSplit = false; } ListNode tem = seperator; ListNode tail = seperator; while (tem.next != null) { if (tem.next.val < x) { ListNode node = tem.next; tem.next = node.next; node.next = tail.next; tail.next = node; tail = node; } if (tem.next != null && tem.next.val < x) { continue; } else { tem = tem.next; } if (tem == null) { break; } } return isSplit ? seperator.next : head; }
相关推荐
李白高力士脱靴李白贺知章告别课本剧.pptx
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。
C语言项目之超级万年历系统源码,可以做课程设计参考 文章参考:https://www.qqmu.com/4373.html
Jupyter-Notebook
51单片机加减乘除计算器系统设计(proteus8.17,keil5),复制粘贴就可以运行
《中国房地产统计年鉴》面板数据资源-精心整理.zip
Jupyter-Notebook
Jupyter-Notebook
毕业论文答辩ppt,答辩ppt模板,共18套
Jupyter-Notebook
《中国城市统计年鉴》面板数据集(2004-2020年,最新).zip
Python基础 本节课知识点: • set的定义 • Set的解析 • set的操作 • set的函数
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。
兵制与官制研究资料最新版.zip
Jupyter-Notebook
七普人口数据+微观数据+可视化+GIS矢量资源-精心整理.zip
Support package for Hovl Studio assets.unitypackage
土壤数据库最新集.zip
Jupyter-Notebook
1991-2020年中国能源统计年鉴-能源消费量(分省)面板数据-已更至最新.zip