-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIntersection_Point_in_Y_Shaped_Linked_Lists.cpp
74 lines (59 loc) · 1.61 KB
/
Intersection_Point_in_Y_Shaped_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
67
68
69
70
71
72
73
74
/*
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:
int intersectPoint(Node* head1 , Node* head2)
{
Node* ptr1 = head1;
Node* ptr2 = head2;
if(ptr1 == NULL || ptr2 == NULL)
return 0;
while (ptr1 != ptr2)
{
ptr1 = ptr1->next;
ptr2 = ptr2->next;
if(ptr1 == ptr2)
return ptr1->data;
if(ptr1 == NULL)
ptr1 = head2;
if(ptr2 == NULL)
ptr2 = head1;
}
return ptr1->data;
}