-
Notifications
You must be signed in to change notification settings - Fork 0
/
mergeTwoLists.cpp
85 lines (76 loc) · 1.89 KB
/
mergeTwoLists.cpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
Merge two sorted linked lists and return it as a new sorted list.
The new list should be made by splicing together the nodes of the first two lists.
Example:
Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4
*/
#include<iostream>
using namespace std;
struct ListNode {
int val;
ListNode* next;
ListNode(int x) : val(x), next(nullptr) {}
};
class Solution {
public:
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
if (l1 == nullptr) return l2;
if (l2 == nullptr) return l1;
ListNode* ret(nullptr);
// Initialize the head
if (l1 && l2) {
if (l1->val <= l2->val) {
ret = l1;
l1 = l1->next;
}
else {
ret = l2;
l2 = l2->next;
}
}
ListNode* final_ret = ret;
while (l1 && l2) {
if (l1->val <= l2->val) {
ret->next = l1;
ret = l1;
l1 = l1->next;
}
else {
ret->next = l2;
ret = l2;
l2 = l2->next;
}
}
if (l1 == nullptr) ret->next = l2;
if (l2 == nullptr) ret->next = l1;
return final_ret;
}
};
void printList(ListNode* n)
{
while (n != nullptr) {
cout << n->val << " ";
n = n->next;
}
}
int main()
{
Solution S;
ListNode* n1 = new ListNode(1);
ListNode* n2 = new ListNode(2);
ListNode* n3 = new ListNode(10);
ListNode* na = new ListNode(2);
ListNode* nb = new ListNode(3);
ListNode* nc = new ListNode(8);
ListNode* nd = new ListNode(200);
n1->next = n2;
n2->next = n3;
na->next = nb;
nb->next = nc;
nc->next = nd;
ListNode* result = S.mergeTwoLists(n1, na);
printList(result);
//cout << "The answer is: " << result->val << endl;
return 0;
}