//#21 Marge Two Sorted Lists
//12ms 72.02%
#include <iostream>
using namespace std;
/**
* 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)
{
ListNode *new_head(NULL), *p(NULL);
if(l1 == NULL) return l2;
if(l2 == NULL) return l1;
if(l1->val < l2->val)
{
new_head = l1;
l1 = l1->next;
}
else
{
new_head = l2;
l2 = l2->next;
}
p = new_head;
p->next = NULL;
while(l1 != NULL && l2 != NULL)
{
if(l1->val < l2->val)
{
p->next = l1;
l1 = l1->next;
}
else
{
p->next = l2;
l2 = l2->next;
}
p = p->next;
p->next = NULL;
}
if(l1 != NULL)
{
p->next = l1;
}
else
{
p->next = l2;
}
return new_head;
}
};