21. Merge Two Sorted Lists
问题描述
解决方案
非递归方式
/**
* 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) {
if(l1==NULL) return l2;
if(l2==NULL) return l1;
ListNode* ml;
ml->next=NULL;
ListNode* rml =ml;
while(l1&&l2)
{
if(l1->val>l2->val)
{
ml->next=l2;
l2=l2->next;
}
else
{
ml->next=l1;
l1=l1->next;
}
ml=ml->next;
}
if(!l1) ml->next=l2;
if(!l2) ml->next=l1;
return rml->next;
}
};
递归方式
class Solution {
public:
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
if(!l1||!l2) return l1?l1:l2;
else if(l1->val>l2->val)
{
l2->next=mergeTwoLists(l1,l2->next);
return l2;
}
else
{
l1->next=mergeTwoLists(l1->next,l2);
return l1;
}
}
};
作者:弦断
出处:http://www.cnblogs.com/ucas/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。