您的位置:首页 > 其它

Merge Two Sorted Lists 分类: Leetcode(排序) 2015-04-08 21:59 24人阅读 评论(0) 收藏

2015-04-08 21:59 197 查看


Merge Two Sorted Lists



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;
*     ListNode *next;
*     ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode *mergeTwoLists(ListNode *l1, ListNode *l2) {
if(!l1) return l2;
if(!l2) return l1;
ListNode dummy(-1);
ListNode *p = &dummy;
while(l1 &&l2) {
if(l1->val >= l2->val) {
p->next = l2;
p = l2;
l2 = l2->next;
}
else {
p->next = l1;
p = l1;
l1 = l1->next;
}
}
if(l1) p->next = l1;
else p->next = l2;
return dummy.next;

}
};


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