将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例:
输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/merge-two-sorted-lists
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
思路:因为是通过拼接给定的两个链表的所有节点组成新链表,所以代码如下就行。
/**
* 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) {
ListNode *p1 = l1;
ListNode *p2 = l2;
ListNode *cur = new ListNode(0);
ListNode *head = cur;
while(p1&&p2)
{
if(p1->val<=p2->val)
{
cur->next = p1;
p1 = p1->next;
cur = cur->next;
}
else
{
cur->next = p2;
p2 = p2->next;
cur = cur->next;
}
}
if(p1)
cur->next = p1;
if(p2)
cur->next = p2;
return head->next;
}
};
思路2:递归实现。
/**
* 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 == nullptr)//如果l1先遍历完
return l2;
if(l2 == nullptr)//如果l2先遍历完
return l1;
if(l1->val < l2->val)
{
l1->next = mergeTwoLists(l1->next,l2);
return l1;//把当前已经连接好的部分返回
}
else
{
l2->next = mergeTwoLists(l1,l2->next);
return l2;
}
}
};