-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path21-Merge-Two-Sorted-Lists.c
58 lines (58 loc) · 1.09 KB
/
21-Merge-Two-Sorted-Lists.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* 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 *head = NULL, *tail = NULL;
while (NULL != l1 && NULL != l2)
{
if (l1->val < l2->val)
{
if (NULL == head)
{
head = l1;
tail = l1;
}
else
{
tail->next = l1;
tail = tail->next;
}
l1 = l1->next;
}
else
{
if(NULL == head)
{
head = l2;
tail = l2;
}
else
{
tail->next = l2;
tail = tail->next;
}
l2 = l2->next;
}
}
if (NULL != l1)
{
tail->next = l1;
}
if (NULL != l2)
{
tail->next = l2;
}
return head;
}