题目描述
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.
Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4
题意:合并两个有序链表。
算法1
线性合并
题解1:非递归式类似于合并两个有序数组,先设置一个虚拟头节点,然后依次比较两个链表节点的大小,将小的节点挂在头节点后面,直至有一个链表到了末尾,将另一个链表剩余节点挂在该链表后面即可。
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
ListNode* dummy = new ListNode(0);
ListNode* cur = dummy;
while(l1 != NULL && l2 != NULL)
{
if(l1->val < l2->val)
{
cur->next = l1;
l1 = l1->next;
}else{
cur->next = l2;
l2 = l2->next;
}
cur = cur->next;
}
cur->next = (l1)?l2:l1;
return dummy->next;
}
算法2
递归
题解2;递归式
ListNode* merge(ListNode* l1,ListNode* l2)
{
if(l1==NULL) return l2;
if(l2==NULL) return l1;
if(l1->val<l2->val){
l1->next=merge(l1->next,l2);
return l1;
}else{
l2->next=merge(l1,l2->next);
return l2;
}
}
算法1的最后合并剩余节点好像写反了,应该是这样吧cur->next = (l1) ? l1 : l2;