-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathquestion10.c
139 lines (114 loc) · 3.46 KB
/
question10.c
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
Suppose there are two single linked lists both of which merge at the same point and
become a single linked list. Find the node at which they merge
METHOD1:
Brute force approach where in for every node in linked list1 you check if its present in the list 2 or not.
Time complexity: O(mn) //m and n are sizes of the two lists respectively
Space complexity: O(1)
METHOD2:
Hash table: store all the addresses of linked list 1 by traversing it in the hash table.
Then traverse the other list and find where the first address matches
Time complexity: O(max(m,n))
Space complexity: O(m) OR O(n) whichever goes first
METHOD3:
Using Stacks:
Traverse the first linked list and store the result in one stack
Similarly for the other linked list store the result in the other stack
Then pop out both the stacks one by one, when the element does not match, the last popped out is the answer.
Time complexity: O(max(n,m, min(m,n)))
Space complexity: O(m) + O(n)
METHOD4:
Find the length of both the lists and subtract. Traverse the larger list by that difference and then move both
the lists one by one, when the addresses are equal, thats the point of intersection
Time complexity: O(max(m,n))
Space complexity: O(1)
METHOD5:
Make the last node point to the beginning of any two lists. Now this problem has been converted to a loop
problem in a linked list where we need to find the first node. Same method as done in question9. Just that
after we solve the problem we need to revert the linked list back to its original form.
Time complexity: O(m+n) //total number of nodes in the linked list
Space complexity: O(1)
*/
//METHOD2
//still to be discovered how to store addresses in hash table
//METHOD3
//still to be discovered how to use stacks
//METHOD5
//aleady done in question9
//METHOD1
#include <stdio.h>
#include <stdlib.h>
struct node{
int data;
struct node *link;
};
void printHash(int arr[], int size){
for(int i=0; i<size; i++){
printf("%d\n", arr[i]);
}
}
int count(struct node *head){
int counter = 0;
for(counter=0;head;head=head->link,counter++);
return counter;
}
int findMergeNode(int diff,struct node *head1, struct node *head2){
//METHOD4
for(int count=0;count<diff;head1=head1->link, count++){
if(!head1){
return -1;
}
}
for(;head1 && head2;head1=head1->link,head2=head2->link){
if(head1==head2){
return head1->data;
}
}
return -1;
}
void mergeList(struct node *l1, struct node *l2){
struct node *t = l1;
while(t->link){t = t->link;}
t->link = l2->link->link;
}
void makeList(struct node *t, int maxCounter, int mul){
int counter = 1;
while(counter <=maxCounter){
t->data = counter*mul;
if(counter == maxCounter){
t->link = NULL;
}else{
t->link = (struct node *)malloc(sizeof(struct node));;
}
t = t->link;
counter++;
}
}
void printList(struct node *head){
if(head){
printf("%d-->", head->data);
printList(head->link);
}
printf("\n");
}
int main(){
struct node *head = (struct node *)malloc(sizeof(struct node));
struct node *t = head;
makeList(t,5,10);
struct node *head1 = (struct node *)malloc(sizeof(struct node));
t = head1;
makeList(t,8,100);
mergeList(head,head1);
printList(head);
printList(head1);
int l1 = count(head);
int l2 = count(head1);
int diff = abs(l1-l2);
printf("difference is %d\n", diff);
int value = (l1>l2)?findMergeNode(diff,head,head1):findMergeNode(diff,head1,head);
if(value == -1){
printf("there is no node where it merges\n");
}else{
printf("the value at which it merges is %d\n", value);
}
}