-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSinglyList.cpp
More file actions
303 lines (272 loc) · 8.19 KB
/
Copy pathSinglyList.cpp
File metadata and controls
303 lines (272 loc) · 8.19 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
#include<iostream>
#include <stdexcept>
using namespace std;
class Node{
private:
int element;
Node *next_node;
public:
Node(int e=0,Node *n=nullptr):element(e),next_node(n){}
//Getters
int retrieve() const{
return element;
}
Node* next() const {
return next_node;
}
//Setters
void setnext(Node* n){
next_node=n;
}
void setelement(int e){
element= e;
}
friend class SinglyList;
};
class SinglyList{
private:
Node* list_head;
public:
SinglyList() {
list_head = nullptr;
}
bool emptyList(){
return list_head==nullptr;
}
int listSize(){
int size=0;
for(Node *ptr=list_head;ptr!=nullptr;ptr=ptr->next()){
size++;
}
return size;
}
int frontElement() const {
if (list_head==nullptr){
throw "underflow";
}
return list_head->retrieve();
}
int lastElement() const {
if (list_head==nullptr){
throw "underflow";
}
Node *p1=nullptr;
for(Node *ptr=list_head;ptr!=nullptr;ptr=ptr->next()){
p1=ptr;
}
return p1->retrieve();
}
int countElement(int n)const{
if (list_head==nullptr){
throw "underflow";
}
int countE=0;
for(Node *ptr=list_head;ptr!=nullptr;ptr=ptr->next()){
if(ptr->retrieve()==n){
countE++;
}
}
return countE;
}
Node *head(){
return list_head;
}
Node *tail(){
Node* tail=nullptr;
for(Node* ptr=list_head;ptr!=nullptr;ptr=ptr->next()){
tail=ptr;
}
return tail;
}
void pushAtFront(int e){
Node*p=new Node(e,list_head);
list_head=p;
}
void pushAtEnd(int e){
//For an Empty List
if (list_head == nullptr) {
list_head = new Node(e, nullptr);
return;
}
Node* last=nullptr;
for(Node *ptr=list_head;ptr!=nullptr;ptr=ptr->next()){
last=ptr;
}
Node*newnode= new Node(e,nullptr);
last->setnext(newnode);
}
int popAtEnd(){
int e;
if (list_head == nullptr) {
throw "underflow";
}
//If the list have only 1 element
if (list_head->next()==nullptr){
e=list_head->retrieve();
delete list_head;
list_head=nullptr;
return e;
}
Node* last=nullptr;
Node* secondLast=nullptr;
for(Node *ptr=list_head;ptr!=nullptr;ptr=ptr->next()){
if(ptr->next()!=nullptr){
secondLast=ptr;
}
last=ptr;
}
e=last->retrieve();
secondLast->setnext(nullptr);
delete last;
return e;
}
int popAtFront(){
int e;
if (list_head == nullptr) {
throw "underflow";
}
if (list_head->next()==nullptr){
e=list_head->retrieve();
delete list_head;
list_head=nullptr;
return e;
}
Node* temp= list_head;
e=list_head->retrieve();
list_head=list_head->next();
delete temp;
return e;
}
void display() {
for (Node* ptr = list_head; ptr != nullptr; ptr = ptr->next()) {
cout << ptr->retrieve() << " ";
}
cout << endl;
}
void eraseElement(int e) {
if (list_head == nullptr) {
throw "underflow";
}
Node* current = list_head;
Node* previous = nullptr;
bool found = false;
while (current != nullptr) {
if (previous == nullptr && current->retrieve() == e) {
found = true;
popAtFront();
current = list_head;
continue;
}
if (current->retrieve() == e && current->next() == nullptr) {
found = true;
popAtEnd();
break;
}
if (current->retrieve() == e) {
found = true;
Node* temp = current;
previous->setnext(current->next());
current = current->next();
delete temp;
}
else {
previous=current;
current=current->next();
}
}
if (!found) {
cout<<"Element not found"<<endl;
}
}
~SinglyList() {
Node* current = list_head;
while (current != nullptr) {
Node* next = current->next();
delete current;
current = next;
}
list_head = nullptr;
}
};
int main() {
SinglyList list;
cout << "===== TEST 1: Pop & Erase on EMPTY LIST =====" << endl;
try {
list.popAtFront();
} catch(const char* e) {
cout << "popAtFront() on empty list -> " << e << endl;
}
try {
list.popAtEnd();
} catch(const char* e) {
cout << "popAtEnd() on empty list -> " << e << endl;
}
try {
list.eraseElement(10);
} catch(const char* e) {
cout << "eraseElement() on empty list -> " << e << endl;
}
cout << "\n===== TEST 2: Push at Front & End =====" << endl;
list.pushAtFront(10);
list.pushAtEnd(20);
list.pushAtEnd(30);
list.pushAtFront(5);
list.display(); // Expected: 5 10 20 30
cout << "\n===== TEST 3: Pop on Single-Element List =====" << endl;
SinglyList single;
single.pushAtFront(100);
cout << "List: ";
single.display();
cout << "popAtFront -> " << single.popAtFront() << endl; // 100
cout << "List after popAtFront: ";
single.display();
single.pushAtFront(200);
cout << "List: ";
single.display();
cout << "popAtEnd -> " << single.popAtEnd() << endl; // 200
cout << "List after popAtEnd: ";
single.display();
cout << "\n===== TEST 4: popAtFront() on multi-element =====" << endl;
list.display(); // 5 10 20 30
cout << "popAtFront = " << list.popAtFront() << endl; // 5
list.display(); // 10 20 30
cout << "\n===== TEST 5: popAtEnd() on multi-element =====" << endl;
list.display(); // 10 20 30
cout << "popAtEnd = " << list.popAtEnd() << endl; // 30
list.display(); // 10 20
cout << "\n===== TEST 6: eraseElement (HEAD delete) =====" << endl;
list.pushAtFront(50); // list = 50 10 20
list.display();
list.eraseElement(50); // delete head
list.display(); // Expected: 10 20
cout << "\n===== TEST 7: eraseElement (TAIL delete) =====" << endl;
list.eraseElement(20); // delete tail
list.display(); // Expected: 10
cout << "\n===== TEST 8: eraseElement (MIDDLE delete) =====" << endl;
list.pushAtEnd(40); // 10 40
list.pushAtEnd(50); // 10 40 50
list.pushAtEnd(60); // 10 40 50 60
list.display();
list.eraseElement(50); // delete middle
list.display(); // Expected: 10 40 60
cout << "\n===== TEST 9: eraseElement multiple consecutive matches =====" << endl;
list.pushAtFront(60); // 60 10 40 60
list.pushAtFront(60); // 60 60 10 40 60
cout << "Before erase: ";
list.display();
list.eraseElement(60);
cout << "After erase: ";
list.display(); // Expected: 10 40
cout << "\n===== TEST 10: eraseElement not found =====" << endl;
list.display();
list.eraseElement(999); // not found
cout << "\n===== TEST 11: countElement, frontElement, lastElement =====" << endl;
cout << "List: ";
list.display();
cout << "Count of 10: " << list.countElement(10) << endl;
cout << "Front Element: " << list.frontElement() << endl;
cout << "Last Element: " << list.lastElement() << endl;
cout << "List size: " << list.listSize() << endl;
cout << "\n===== ALL TESTS COMPLETED =====" << endl;
return 0;
}