-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmerge_in_between_linked_lists.cpp
48 lines (36 loc) · 1.2 KB
/
merge_in_between_linked_lists.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
/**
* 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) {}
* };
*/
class Solution {
public:
ListNode* mergeInBetween(ListNode* list1, int a, int b, ListNode* list2) {
ListNode *l1start = list1, *l1end, *l2start = list2, *l2end;
ListNode *l2begPtr, *l2endPtr;
ListNode *head = list1;
int diff = b - a;
for(int i = 0; i < a - 1; i++)
l1start = l1start->next;
l2begPtr = l1start;
ListNode *tempItr = l1start->next;
l1start->next = NULL;
cout<<l2begPtr->val<<"--"<<l1start->val<<"\n";
for(int i = 0; i <= diff; i++) {
tempItr = tempItr->next;
}
l2endPtr = tempItr;
while(list2->next)
list2 = list2->next;
l2end = list2;
cout<<l2endPtr->val<<"--"<<l2end->val<<"\n";
l2begPtr->next = l2start;
l2end->next = l2endPtr;
return head;
}
};