-
Notifications
You must be signed in to change notification settings - Fork 8
/
MergeTwoSortedLists.cpp
38 lines (38 loc) · 1.04 KB
/
MergeTwoSortedLists.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
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
* https://leetcode.com/problems/merge-two-sorted-lists
*/
class Solution {
public:
ListNode* mergeTwoLists(ListNode* list1, ListNode* list2) {
ListNode* list3 = new ListNode(0);
ListNode* ptr = list3;
ListNode* ptr1 = list1;
ListNode* ptr2 = list2;
while(ptr1 != NULL && ptr2 != NULL) {
if(ptr1 -> val <= ptr2 -> val) {
ptr->next = ptr1;
ptr1 = ptr1->next;
ptr = ptr -> next;
} else {
ptr->next = ptr2;
ptr2 = ptr2->next;
ptr = ptr -> next;
}
}
if(ptr1 != NULL) {
ptr->next = ptr1;
}
if(ptr2 != NULL) {
ptr->next = ptr2;
}
return list3->next;
}
};