-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCycleDetection.cpp
More file actions
137 lines (105 loc) · 2.04 KB
/
CycleDetection.cpp
File metadata and controls
137 lines (105 loc) · 2.04 KB
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
136
137
#include <iostream>
using namespace std;
class node
{
public:
int data;
node *next;
node(int d)
{
data = d;
next = NULL;
}
};
void insertAtHead(node*&head, int data)
{
node* newNode = new node(data);
newNode->next = head;
head = newNode;
}
int length(node *&head)
{
int len = 0;
node *temp = head;
while(temp->next!=NULL)
{
temp = temp->next;
len+=1;
}
return len;
}
void insertAtTail(node *&head, int data)
{
if(head==NULL)
{
head = new node(data);
return;
}
node* temp = head;
while(temp->next!=NULL)
{
temp = temp->next;
}
node* tail = new node(data);
temp->next = tail;
return;
}
void printLL(node*head)
{
node*temp=head;
//cout<<"head: "<<head<<endl;
while(temp!=NULL)
{
cout<<temp->data;
cout<<" ";
temp = temp->next;
}
}
void buildlist(node*&head)
{
int data;
cin>>data;
while(data!=-1)
{
insertAtTail(head,data);
cin>>data;
}
}
istream& operator>>(istream &is,node*&head)
{
buildlist(head);
return is;
}
ostream& operator<<(ostream &os,node*&head)
{
printLL(head);
return os;
}
bool iscyclepresent(node*& head)
{
if(head==NULL || head->next==NULL) return false;
else
{
node* slow = head;
node* fast = head->next;
while(fast!=NULL && fast->next!=NULL)
{
if(slow==fast) return true;
slow = slow->next;
fast = fast->next->next;
}
return false;
}
}
// if we want to find the starting point of the loop, we'll have to move the slow to the head
// and then move the slow and fast pts one step in each iteration.
// the place where both the ptrs meet is the starting node of the linked list
int main()
{
node* head = NULL;
cin>>head;
// creating cycle for detection
head->next->next = head;
cout<<iscyclepresent(head)<<endl;
return 0;
}