forked from mandliya/algorithms_and_data_structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2-8-loop-detection.cpp
91 lines (81 loc) · 1.98 KB
/
2-8-loop-detection.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
79
80
81
82
83
84
85
86
87
88
89
90
91
/**
* Cracking the coding interview, edition 6
* Problem 2.8 Loop Detection
* Problem : Determine if a linkedlist has a loop. If it has a loop, find the start of loop.
* NOTE: I have followed the approach provided in book, however, once I find start of loop,
* I remove the loop. So that we can test our solution. Read comment at line 25.
*/
#include <iostream>
struct Node {
int data;
Node * next;
Node( int d ) : data{ d }, next{ nullptr } { }
};
void removeLoop( Node * loopNode, Node * head )
{
Node * ptr1 = head;
Node * ptr2 = loopNode;
while ( ptr1->next != ptr2->next ) {
ptr1 = ptr1->next;
ptr2 = ptr2->next;
}
//ptr2 has reached start of loop, now removing the loop.
ptr2->next = nullptr;
}
bool detectAndRemoveCycle( Node * head )
{
if ( head == nullptr) {
return false;
}
Node * fastPtr = head;
Node * slowPtr = head;
while( slowPtr && fastPtr && fastPtr->next)
{
fastPtr = fastPtr->next->next;
slowPtr = slowPtr->next;
if ( fastPtr == slowPtr ) {
removeLoop( slowPtr, head );
return true;
}
}
return false;
}
void insert( Node * & head, int data )
{
Node * newNode = new Node( data );
if ( head == nullptr ) {
head = newNode;
} else {
Node * temp = head;
while( temp->next != nullptr ) {
temp = temp->next;
}
temp->next = newNode;
}
}
void printList( Node * head )
{
while( head ) {
std::cout << head->data << "-->";
head = head->next;
}
std::cout << "NULL" << std::endl;
}
int main()
{
Node * head = nullptr;
insert( head , 1 );
insert( head , 2 );
insert( head , 3 );
insert( head , 4 );
insert( head , 5 );
std::cout << "Current List:\n";
printList( head );
std::cout << "Inserting loop, connecting 5 to 2 \n";
head->next->next->next->next->next = head->next;
std::cout << "Detecting and deleting loop\n";
detectAndRemoveCycle(head);
std::cout << "Back to the same old list\n";
printList( head );
return 0;
}