给定一个单链表 L:L0→L1→…→Ln-1→Ln , 将其重新排列后变为: L0→Ln→L1→Ln-1→L2→Ln-2→…
你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。
示例 1: 给定链表 1->2->3->4, 重新排列为 1->4->2->3.
示例 2: 给定链表 1->2->3->4->5, 重新排列为 1->5->2->4->3.
来源:力扣(LeetCode)
思路比较容易,首先找到链表中点,然后翻转后半部分,最后合并两个链表即可。
需要注意的是边界条件的处理,即快慢指针如何初始化,合并两个链表的时候应该如何设置temp。
class Solution { public void reorderList(ListNode head) { if(head==null) return; ListNode slow=head,fast=head.next; while(fast!=null&&fast.next!=null){ slow=slow.next; fast=fast.next.next; } ListNode secondPart=reverse(slow); ListNode temp1; ListNode temp2; while(secondPart!=null&&head!=null){ temp1=head.next; temp2=secondPart.next; head.next=secondPart; secondPart.next=temp1; head=temp1; secondPart=temp2; } } public ListNode reverse(ListNode head){ ListNode temp=null,nextNode=null; while(head!=null){ nextNode=head.next; head.next=temp; temp=head; head=nextNode; } return temp; } }