leetcode148 排序链表(Medium)
Posted 人生苦短,及时刷题
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode148 排序链表(Medium)相关的知识,希望对你有一定的参考价值。
题目来源:leetcode148 排序链表
题目描述:
在?O(n?log?n) 时间复杂度和常数级空间复杂度下,对链表进行排序。
示例 1:
输入: 4->2->1->3
输出: 1->2->3->4
示例 2:
输入: -1->5->3->4->0
输出: -1->0->3->4->5
解题思路:
归并排序,先用用快慢指针找到链表的中点,然后将链表切开,分别对左右两边进行排序,然后合并两个有序的链表。
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* sortList(ListNode* head) {
if(head==NULL||head->next==NULL) return head;
ListNode *slow=head,*fast=head;
while(fast->next!=NULL&&fast->next->next!=NULL){
fast=fast->next->next;
slow=slow->next;
}
ListNode *phead=slow->next;
slow->next=NULL;
ListNode *p1=sortList(head);
ListNode *p2=sortList(phead);
ListNode *p=new ListNode(-1),*temp=p;
while(p1&&p2){
if(p1->val>p2->val){
temp->next=p2;
p2=p2->next;
}
else{
temp->next=p1;
p1=p1->next;
}
temp=temp->next;
}
if(p1) temp->next=p1;
if(p2) temp->next=p2;
return p->next;
}
};
以上是关于leetcode148 排序链表(Medium)的主要内容,如果未能解决你的问题,请参考以下文章