2020-06-22
1.题目描述
输入两个递增排序的链表,合并这两个链表并使新链表中的节点仍然是递增排序的。
2.题解
直接进行合并即可,注意这里的pre指针要进行更新
3.代码
/**
* 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&&!l2) return NULL;
if (!l1) return l2;
if (!l2) return l1;
ListNode *head=new ListNode(-1); // 临时的头节点
head->next=l1;
ListNode *p=l1,*q=l2,*pre=head,*tail;
while (p&&q){
if (p->val>q->val){
tail=q->next;
q->next=p;
pre->next=q;
pre=q;
q=tail;
}else{
pre=p;
p=p->next;
}
}
if (q) pre->next=q;
ListNode* res=head->next;
delete head;
return res;
}
};