题目描述
将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
样例
输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4
算法1
(二路归并) $O(n)$
跟归并排序中的归并是一样的套路。
时间复杂度
只需要遍历两个链表,所以时间复杂度是$O(n)$
参考文献
C++ 代码
/**
* Definition for singly-linked list.
* 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) {}
* };
*/
class Solution {
public:
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
if (!l1) return l2;
if (!l2) return l1;
ListNode *dummy = new ListNode(0), *p = dummy;
while (l1 && l2){
if (l1->val <= l2->val) p->next = l1, l1 = l1->next;
else p->next = l2, l2 = l2->next;
p = p->next;
}
if (l1) p->next = l1;
if (l2) p->next = l2;
p = dummy->next;
delete dummy; dummy = nullptr;
return p;
}
};