-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCircular_Linked_List.cpp
More file actions
119 lines (108 loc) · 1.93 KB
/
Copy pathCircular_Linked_List.cpp
File metadata and controls
119 lines (108 loc) · 1.93 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
// @author: Abhimanyu Maurya
#include <iostream>
using namespace std;
//fast i/o
bool ib = ios_base::sync_with_stdio(0);
bool it = cin.tie(0);
bool ot = cout.tie(0);
class node
{
public:
int data;
node *next;
node(int n);
~node();
};
node::node(int n)
{
data = n;
next = nullptr;
}
node::~node()
{
}
void print(node *head)
{
while (head != nullptr)
{
cout << head->data << " ";
head = head->next;
}
cout << "\n";
}
node *search(node *head, int n)
{
if (head == nullptr)
return nullptr;
while (head != nullptr)
{
if (head->data == n)
return head;
head = head->next;
}
return nullptr;
}
void insertEnd(node *&head, node *&tail, int n)
{
if (head == nullptr)
{
head = tail = new node(n);
return;
}
node *t = search(head, n);
if (t != nullptr)
{
tail->next = t;
tail = t;
}
else
{
tail->next = new node(n);
tail = tail->next;
}
}
void breakLoop(node *head)
{
if(head==nullptr or head->next==nullptr) return;
node *fast = head, *slow = head;
while (fast != nullptr and fast->next != nullptr)
{
fast = fast->next->next;
slow = slow->next;
if (fast == slow)
break;
}
if (fast == slow and fast!=head)
{
fast = head;
while (fast->next != slow->next)
{
fast = fast->next;
slow = slow->next;
}
if (fast->next == slow->next)
slow->next = nullptr;
}
if (fast == slow and fast == head)
{
while (fast->next!=head)
{
fast=fast->next;
}
fast->next=nullptr;
}
}
int main()
{
int t;
cin >> t;
node *head = nullptr, *tail = nullptr;
while (t != -1)
{
insertEnd(head, tail, t);
cin >> t;
}
breakLoop(head);
print(head);
return 0;
}