-
Notifications
You must be signed in to change notification settings - Fork 0
/
intersectionoflinkedlist.txt
96 lines (44 loc) · 1.19 KB
/
intersectionoflinkedlist.txt
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
86
87
88
89
90
91
92
93
94
95
96
#include <bits/stdc++.h>
/****************************************************************
Following is the class structure of the Node class:
class Node
{
public:
int data;
Node *next;
Node(int data)
{
this->data = data;
this->next = NULL;
}
};
*****************************************************************/
int length(Node* head){
int count = 0;
while(head!=NULL){
count++;
head = head->next;
}
return count;
}
int findIntersection(Node *firstHead, Node *secondHead){
if(firstHead == NULL || secondHead == NULL) return -1;
Node* temp1 = firstHead;
Node* temp2 = secondHead;
int l1 = length(temp1);
int l2 = length(temp2);
if(l1-l2 < 0){
int diff = l2-l1;
while(diff--) temp2 = temp2->next;
}
else{
int diff = l1-l2;
while(diff--) temp1 = temp1->next;
}
while(temp1!=temp2 && temp1->next!=NULL && temp2->next!=NULL){
temp1 = temp1->next;
temp2 = temp2->next;
}
if(temp1 == temp2) return temp1->data;
else return -1;
}