-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinkCircle.cpp
More file actions
231 lines (189 loc) · 4.04 KB
/
Copy pathlinkCircle.cpp
File metadata and controls
231 lines (189 loc) · 4.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
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
//LinkedList formula based representation
#include<iostream>
#include<stdbool.h>
using namespace std;
template<class T> //for class Node
class Node
{
public:
T data;
Node<T> *next;
Node(){}
Node(T d)
{
data =d;
}
void display()
{
cout<<data;
}
};
template<class T>
class CLinkedList
{
private:
Node<T> *start; //begining of the list
public:
CLinkedList()
{
start = 0; //null pointer
}
bool isEmpty()
{
return(start == 0);
}
int getLength();
bool search(T key);
void insert(int pos, T data);
void deleteIt(int pos);
void displayList();
}; // class linkedList
//to find lenth of the list
template<class T>
int CLinkedList<T>::getLength()
{
int count = 0;
Node<T> *curr = start;
while(curr->next != start )
{
count++;
curr = curr->next;
}
if(count == 0 && start->next == start)
count++;
return count;
}
template<class T>
bool CLinkedList<T>::search(T key)
{
Node<T> *curr = start;
while(key != curr->data && curr->next !=start)
curr=curr->next;
// if(curr->next !=start)
if(key == curr->data)
return true;
return false;
}
//Display the list of nodes.
template<class T>
void CLinkedList<T>::displayList()
{
Node<T> *curr = start;
cout<<"\nStart :\n";
while(curr->next != start)
{
curr->display();
cout<<" ";
curr = curr->next;
}
curr->display();
}
//Insert new
template<class T>
void CLinkedList<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;
}
else
{
int i = 0;
Node<T> *curr = start;
while(i < pos && 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 CLinkedList<T>::deleteIt(int pos)
{
if(isEmpty() || pos > getLength())
cout<<"\nWRONG POSITION TO DELETE!\n";
if(pos == 1)
{
// cout<<"pos=1";
start=start->next;
}
else
{
Node<T> *curr,*prev;
curr=start;
int i=1;
while(curr->next != start && i != pos)
{
i++;
prev = curr;
curr=curr->next;
}
if(curr==0|| i!=pos)
cout<<"\nerror\n";
prev->next = curr->next;
cout<<endl;
}
}
int main()
{
for(int j=0;j<40;j++)
cout<<"-";
cout<<"\nTesting for integer.\n";
CLinkedList<int> l1;
cout<<"Checking for empty:"<<l1.isEmpty();
l1.insert(1,10);
l1.insert(2,20);
l1.insert(3,30);
l1.displayList();
cout<<"length:"<<l1.getLength();
cout<<"\ntrying to delete position 1";
l1.deleteIt(1);
l1.displayList();
cout<<"\nsearching for 30:"<<l1.search(30);
cout<<endl;
for(int j=0;j<40;j++)
cout<<"-";
cout<<"\nTesting for float.\n";
CLinkedList<float> l2;
cout<<"Checking for empty:"<<l2.isEmpty();
l2.insert(1,10.3);
l2.insert(2,20.3);
l2.insert(3,30.3);
l2.displayList();
cout<<"\ntrying to delete position 2";
l2.deleteIt(2);
l2.displayList();
cout<<"\nsearching for 30.3:"<<l2.search(30.3);
cout<<endl;
for(int j=0;j<40;j++)
cout<<"-";
cout<<endl;
cout<<"\ntesting for single length list\n";
CLinkedList<int> l3;
cout<<"Checking for empty:"<<l3.isEmpty();
l3.insert(1,10);
l3.displayList();
l3.deleteIt(1);
l3.displayList();
return 0;
}