-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIntersection_Point_in_Y_Shaped_Linked_Lists_Approach-2.cpp
78 lines (68 loc) · 1.75 KB
/
Intersection_Point_in_Y_Shaped_Linked_Lists_Approach-2.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
67
68
69
70
71
72
73
74
75
76
77
78
/*
Problem Statement:
-----------------
Given two singly linked lists of size N and M, write a program to get the point where two linked lists intersect each other.
Example 1:
---------
Input:
LinkList1 = 3->6->9->common
LinkList2 = 10->common
common = 15->30->NULL
Output: 15
Explanation: Y ShapedLinked List.
Example 2:
---------
Input:
Linked List 1 = 4->1->common
Linked List 2 = 5->6->1->common
common = 8->4->5->NULL
Output: 8
Explanation:
4 5
| |
1 6
\ /
8 ----- 1
|
4
|
5
|
NULL
Your Task: You don't need to read input or print anything. The task is to complete the function intersetPoint() which takes the
pointer to the head of linklist1(head1) and linklist2(head2) as input parameters and returns data value of a node where two linked lists intersect.
If linked list do not merge at any point, then it should return -1.
Challenge : Try to solve the problem without using any extra space.
Expected Time Complexity: O(N+M)
Expected Auxiliary Space: O(1)
*/
// Link --> https://practice.geeksforgeeks.org/problems/intersection-point-in-y-shapped-linked-lists/1#
// Code:
Node* findIntersection(Node* head1, Node* head2)
{
Node *h = head1;
Node *head = NULL , *tail = NULL;
unordered_set <int> us;
while(h != NULL)
{
us.insert(h->data);
h = h->next;
}
h = head2;
while(h != NULL)
{
if(us.find(h->data) != us.end())
{
if(head == NULL )
head = tail = new Node(h->data);
else
{
tail->next = new Node(h->data);
tail = tail->next;
}
us.erase(us.find(h->data));
}
h = h->next;
}
return head;
}