题目描述
将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例:
输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4
题解
同时遍历两个链表,把值小的先放入新链表,然后做一次移动;重复操作,最后把新链表的节点指向没有遍历完的链表即可
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2)
{
ListNode *p1 = l1, *p2 = l2;
ListNode head(-1);
ListNode *index = &head;
while (p1 != NULL && p2 != NULL)
{
if (p1->val <= p2->val)
{
index->next = new ListNode(p1->val);
p1 = p1->next;
}
else
{
index->next = new ListNode(p2->val);
p2 = p2->next;
}
index = index->next;
}
if (p1 == NULL)
index->next = p2;
else
index->next = p1;
return head.next;
}