-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathIntersection_of_Two_Linked_Lists.cpp
66 lines (60 loc) · 1.54 KB
/
Intersection_of_Two_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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
/*
class Solution {
public:
ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
ListNode *pA, *pB;
pA = headA, pB = headB;
while(pA and pB) {
pA = pA->next;
pB = pB->next;
}
if(pA and !pB) return getIntersectionNode(headB, headA);
ListNode *pB2 = headB;
while(pB) {
pB = pB->next;
pB2 = pB2->next;
}
pA = headA, pB = pB2;
while(pA and pB and pA != pB) {
pA = pA->next;
pB = pB->next;
}
return pA;
}
};
*/
class Solution {
public:
ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
if (!headA || !headB)
return NULL;
ListNode *na = headA, *nb = headB;
// O(n + m)
traverseAndRedirect(na, nb, headA, headB);
traverseAndRedirect(na, nb, headA, headB);
while (na && nb && na != nb) {
na = na->next;
nb = nb->next;
}
return na;
}
void traverseAndRedirect(ListNode* &na, ListNode* &nb, ListNode* &headA, ListNode* &headB) {
while (na && nb) {
na = na->next;
nb = nb->next;
}
if (!na) {
na = headB;
} else if (!nb) {
nb = headA;
}
}
};