-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircularLinkedLists.cpp
More file actions
214 lines (200 loc) · 3.98 KB
/
Copy pathcircularLinkedLists.cpp
File metadata and controls
214 lines (200 loc) · 3.98 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#include<iostream>
#include<stdbool.h>
using namespace std;
template<class T>
class Clinked;
template<class T>
class Node
{
private:
T data;
Node<T> *next;
public:
Node(){}
Node(T d)
{
data = d;
}
void display()
{
cout<<data;
}
friend class Clinked<T>;
};
template<class T>
class Clinked
{
private:
Node<T> *start;
public:
Clinked()
{
start = 0;
}
bool isEmpty()
{
return(start == 0);
}
int getLength();
bool search(T key);
void insert(int pos, T data);
void deleteIt(int pos);
void displayList();
};
template<class T>
int Clinked<T>::getLength()
{
if(isEmpty())
return 0;
else
{
int count = 0;
Node<T> *curr = start;
do
{
curr=curr->next;
count++;
}while(curr!=start);
return count;
}
}
template<class T>
bool Clinked<T>::search(T key)
{
Node<T> *curr = start;
while(key!=curr->data && curr->next!=start)
curr=curr->next;
if(key == curr->data)
return true;
return false;
}
template<class T>
void Clinked<T>::displayList()
{
if(getLength()==0)
{
cout<<"\nempty list!\n";
}
else{
Node<T> *curr = start;
cout<<"\nStart:\n";
int i=1;
while(curr->next != start)
{
curr->display();
cout<<" ";
curr=curr->next;
}
curr->display();
}
}
template<class T>
void Clinked<T>::insert(int pos, T ele)
{
Node<T> *temp = new Node<T>(ele);
if(isEmpty())
{
start = temp;
temp->next = start;
}
else if(pos == 1)
{
Node<T> *curr = start;
while(curr->next!=start)
curr=curr->next;
temp->next = start;
start = temp;
curr->next = start;
}
else
{
int i = 1;
Node<T> *curr = start;
while(i < pos-1 && curr->next != start)
{
i++;
curr = curr->next;
}
if(curr->next != start)
{
temp->next = curr->next;
curr->next = temp;
}
else
{
temp->next=start;
curr->next=temp;
}
}
}
template<class T>
void Clinked<T>::deleteIt(int pos)
{
if(isEmpty() || pos > getLength())
cout<<"\nWRONG POSITION TO DELETE!\n";
else if(pos == 1)
{
if(getLength() == 1)
{
start = 0;
}
else
{
Node<T> *curr = start;
while(curr->next!=start)
curr=curr->next;
start = start->next;
curr->next = start;
}
}
else
{
Node<T> *curr,*prev;
curr = start;
int i = 1;
while(curr->next != start && i != pos)
{
i++;
prev = curr;
curr=curr->next;
}
if(i!=pos)
cout<<"\nERROR\n";
else if(curr->next == start)
{
prev->next = start;
delete curr;
}
else
{
prev->next == curr->next;
delete curr;
cout<<endl;
}
}
}
int main()
{
for(int j=0; j<40;j++)
cout<<"-";
cout<<"\n Testing for integer.\n";
Clinked<int> l1;
cout<<"Checking for empty:"<<l1.isEmpty();
l1.displayList();
l1.insert(1,10);
cout<<endl<<"inserted 10! Length:"<<l1.getLength();
l1.insert(2,20);
cout<<endl<<"inserted 20! Length:"<<l1.getLength();
l1.displayList();
l1.insert(1,30);
cout<<endl<<"inserted 30! Length:"<<l1.getLength();
l1.displayList();
cout<<"\nTrying to delete pos 1:";
l1.deleteIt(1);
l1.displayList();
cout<<"\nTrying to delete pos 2:";
l1.deleteIt(2);
l1.displayList();
cout<<endl;
return 0;
}