Leetcode143. 重排链表
题目描述
给定一个单链表 L:L0→L1→…→L**n-1→Ln ,
将其重新排列后变为: L0→L**n→L1→L**n-1→L2→L**n-2→…
你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。
示例 1:
1
| 给定链表 1->2->3->4, 重新排列为 1->4->2->3.
|
示例 2:
1
| 给定链表 1->2->3->4->5, 重新排列为 1->5->2->4->3.
|
解题思路
这道题可以简单粗暴莽一波。思路就是先找到中间结点,然后将中间结点之后的结点进行反转,接着把两半部分链表按题目要求连接起来。
示例代码如下。
示例代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| struct ListNode { int val; ListNode *next; ListNode() : val(0), next(nullptr) {} ListNode(int x) : val(x), next(nullptr) {} ListNode(int x, ListNode *next) : val(x), next(next) {} };
ListNode* findMidPos(ListNode* head) { if(head==nullptr||head->next==nullptr) return head; ListNode* pre=head; ListNode* cur=head; while(cur!=nullptr) { cur=cur->next; if(cur) cur=cur->next; pre=pre->next; } return pre; }
ListNode* reverseList(ListNode* head) { if(head==nullptr||head->next==nullptr) return head; ListNode* newHead=reverseList(head->next); head->next->next=head; head->next=nullptr; return newHead; }
void reorderList(ListNode* head) { ListNode* midPointer=findMidPos(head); ListNode* newHead=reverseList(midPointer); ListNode* cur=head; while(newHead) { ListNode* nextPointer=newHead->next; newHead->next=cur->next; cur->next=newHead; newHead=nextPointer; cur=cur->next->next; } cur->next=nullptr; }
|