当前位置:   article > 正文

LeetCode--143. Reorder List_143开头的是什么类网络

143开头的是什么类网络

今天是2019年1月1日,祝大家新年快乐!为图个好彩头,今天准备AC十个编程题,先从熟悉的链表开始入手!!!

题目链接:https://leetcode.com/problems/reorder-list/

要求将链表重组,意思是将链表(链表长度为n)倒数第一的节点(第n个节点)插在正数第一的元素后面,不是一般性的说:将第i个节点(i>n/2)插入到第(n-i+1)个节点的后面。

更直接的说:先将链表二分为两个长度基本相等的链表(第一个链表长度要么等于第二个链表,要么比第二个链表大1),然后将第二个链表逆转(这个链表操作四不四很熟悉,送分题呀,参见206. Reverse Linked List),再将第二个链表的逐个节点插入到第一个链表的节点之间。就是这么简单直白,哈哈哈哈!!!

代码如下:

  1. class Solution {
  2. public void reorderList(ListNode head)
  3. {
  4. if(head==null)
  5. return;
  6. ListNode fast=head,slow=head;
  7. while(fast.next!=null &&fast.next.next!=null)
  8. {
  9. slow=slow.next;
  10. fast=fast.next.next;
  11. }
  12. ListNode head1=reverseList(slow.next);
  13. slow.next=null;
  14. ListNode p=head,q=head1;
  15. while(p.next!=null)
  16. {
  17. head1=head1.next;
  18. q.next=p.next;
  19. p.next=q;
  20. p=q.next;
  21. q=head1;
  22. }
  23. if(q!=null)
  24. p.next=q;
  25. }
  26. public ListNode reverseList(ListNode head) {
  27. if(head==null||head.next==null)
  28. return head;
  29. ListNode rear=null,p=head;
  30. ListNode front=head.next;
  31. while(front!=null)
  32. {
  33. p.next=rear;
  34. rear=p;
  35. p=front;
  36. front=front.next;
  37. }
  38. p.next=rear;
  39. return p;
  40. }
  41. }

效果杠杠的:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/658241
推荐阅读
相关标签
  

闽ICP备14008679号