leetcode 21. 合并两个有序链表
问题描述
将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例:
输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4
代码
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
ListNode* ans = new ListNode(0);
ListNode* l3 = ans;
while(l1 || l2)
{
if(l1 !=NULL && l2 != NULL)
{
if(l1->val < l2->val)
{
l3->next = l1;
l1 = l1->next;
l3 = l3->next;
}
else{
l3->next = l2;
l2 = l2->next;
l3 = l3->next;
}
}
else if(l1 == NULL)
{
l3->next = l2;
l2 = l2->next;
l3 = l3->next;
}
else{
l3->next = l1;
l1 = l1->next;
l3 = l3->next;
}
}
return ans->next;
}
};
结果
执行用时 :12 ms, 在所有 cpp 提交中击败了70.83%的用户
内存消耗 :8.9 MB, 在所有 cpp 提交中击败了82.26%的用户
代码
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
ListNode* ans = new ListNode(0);
ListNode* l3 = ans;
while(l1 && l2)
{
if(l1->val < l2->val)
{
l3->next = l1;
l1 = l1->next;
l3 = l3->next;
}
else{
l3->next = l2;
l2 = l2->next;
l3 = l3->next;
}
}
if(l2 != NULL)
{
l3->next = l2;
l2 = l2->next;
l3 = l3->next;
}
else if(l1 != NULL){
l3->next = l1;
l1 = l1->next;
l3 = l3->next;
}
return ans->next;
}
};
结果
执行用时 :12 ms, 在所有 cpp 提交中击败了70.83%的用户
内存消耗 :8.8 MB, 在所有 cpp 提交中击败了90.53%的用户