-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetIntersectionNode.cpp
More file actions
47 lines (40 loc) · 918 Bytes
/
getIntersectionNode.cpp
File metadata and controls
47 lines (40 loc) · 918 Bytes
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
#include<iostream>
using namespace std;
struct ListNode
{
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
int getLength(ListNode* head)
{
int length = 0;
while (head)
{
++length;
head = head->next;
}
return length;
}
ListNode *getIntersectionNode(ListNode *headA, ListNode *headB)
{
int lengthA = getLength(headA);
int lengthB = getLength(headB);
ListNode* tmpA = headA, * tmpB = headB;
while (lengthA > lengthB)
{
--lengthA;
tmpA = tmpA->next;
}
while(lengthA < lengthB)
{
--lengthB;
tmpB = tmpB->next;
}
while (tmpA && tmpB && tmpA != tmpB)
{
tmpA = tmpA->next;
tmpB = tmpB->next;
}
return tmpA;
}