您的位置:首页 > 其它

[Leetcode]-Merge Two Sorted Lists

2017-08-10 13:10 417 查看
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.

题目:合并两个排序后的单链表,要求合并之后也是排序好的

思路:递归合并



/**
* Definition for singly-linked list.
* struct ListNode {
*     int val;
*     struct ListNode *next;
* };
*/
struct ListNode* mergeTwoLists(struct ListNode* l1, struct ListNode* l2) {
if(NULL == l1) return l2;
if(NULL == l2) return l1;

struct ListNode* MergeList = NULL;

if(l1->val < l2->val)
{
MergeList = l1;
MergeList->next = mergeTwoLists(l1->next,l2);
}

else
{
MergeList = l2;
MergeList->next = mergeTwoLists(l1,l2->next);
}

return MergeList;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: