-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathRemoveLoop.cpp
79 lines (79 loc) · 1.54 KB
/
RemoveLoop.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
#include <bits/stdc++.h>
using namespace std;
struct node
{
int data;
node* next;
};
node* head;
void insertAtN(int data,int n){
node* new_node=new node();
new_node->data=data;
new_node->next=NULL;
if(n==1){
new_node->next=head;
head=new_node;
return ;
}
node* temp=head;
for (int i = 0; i < n-2; ++i) temp=temp->next;
new_node->next=temp->next;
temp->next=new_node;
}
void print(){
node* temp=head;
while(temp){
cout<<temp->data<<" ";
temp=temp->next;
}
cout<<"\n";
}
void printReverse(node * p){
node* temp=p;
if(!temp) return ;
printReverse(temp->next);
cout<<temp->data<<" ";
}
void removeLoop(node * loop_node){
node *ptr1, *ptr2;
ptr1=head;
while(1){
ptr2=loop_node;
while(ptr2->next != loop_node && ptr2->next != ptr1)
ptr2 = ptr2->next;
if(ptr2->next == ptr1)
break;
ptr1 = ptr1->next;
}
ptr2->next = NULL;
}
bool loopDetect(){
node* first = head , *second = head;
while(first && second && second->next){
first = first->next;
second = second->next->next;
if(first == second){
removeLoop(first);
return true;
}
}
return false;
}
int main(int argc, char const *argv[])
{
ios_base::sync_with_stdio(false);
int n;
cout<<"How many numbers you want to enter ";
cin>>n;
int x;
for (int i = 0; i < n; ++i)
{
cout<<"Enter the number ";
cin>>x;
insertAtN(x,i+1);
}
node * temp=head;
while(temp->next != NULL) temp=temp->next;
temp->next=head;
return 0;
}