-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingly_linked_list.cpp
284 lines (268 loc) · 6.76 KB
/
singly_linked_list.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
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
/*
***************************
* *
* Author: Swaraj Deep *
* *
***************************
*/
#include <iostream>
#include <exception>
#include "list.cpp"
using namespace std;
template <typename T>
struct node
{ // Node structure of the list
T data; // Hold the data part of the node
node *next; // Hold the pointer to the next node
};
template <typename T>
class singly_linked_list : public list<T>
{ // Linked list implementation *zero based indexing*
private:
int len; // Holds the length of the list
node<T> *head; // Holds the pointer to the head of the list
node<T> *get_new_node(const T &); // Function to get the new node for the list
void insert_first_node(const T &); // Function to insert node at first position
void remove_all(); // Remove all the nodes from the list
public:
singly_linked_list(); // Constructor of the linked list
~singly_linked_list() { remove_all(); } // Destructor of the linked list
void insert(const T &, int); // Insert a given element to the postion
void append(const T &); // Append a given element to the last
T peek_first(); // Return the first element in the list
bool remove_at(int); // Return true if the element is removed from the index
bool remove(const T &); // Return true if the element is removed
int length(); // Return the number of elements present in the list
bool find(const T &); // Return true if the element is found
node<T> *get_head_node(); // Return the head node of the list;
};
template <typename T>
singly_linked_list<T>::singly_linked_list()
{
this->len = 0; // Set the length of the list to zero
this->head = NULL; // Set the head pointer to NULL
}
template <typename T> // Create the new node
node<T> *singly_linked_list<T>::get_new_node(const T &data)
{
node<T> *new_node = new node<T>;
new_node->data = data;
new_node->next = NULL;
return new_node;
}
template <typename T> // Append to the end of the linked_list
void singly_linked_list<T>::append(const T &data)
{
this->len++;
if (!head) // Check whether the head is NULL or not
{
node<T> *new_node = get_new_node(data);
head = new_node;
return;
}
node<T> *new_node = get_new_node(data);
new_node->next = head; // Adjusting the links
head = new_node;
return;
}
template <typename T> // Get the head node of the list
node<T> *singly_linked_list<T>::get_head_node()
{
try
{
// Verify the length
if (this->len > 0)
return this->head;
throw runtime_error("Exception: Illegal operation called");
}
catch (const exception &e)
{
cout << e.what() << '\n';
}
}
template <typename T> // Get the first node of the Linked list
T singly_linked_list<T>::peek_first()
{
try
{
// Verify the length
if (this->len > 0)
{
return this->head->data;
}
throw runtime_error("Exception: Illegal operation called");
}
catch (const exception &e)
{
cout << e.what() << '\n';
}
}
template <typename T> // Get the length of the linked list
int singly_linked_list<T>::length()
{
return this->len;
}
template <typename T> // Check whether the node exist or not
bool singly_linked_list<T>::find(const T &key)
{
node<T> *head = get_head_node();
while (head)
{
if (head->data == key)
{
return true; // Return true if node found
}
head = head->next;
}
return false;
}
template <typename T> // Insert to the begining
void singly_linked_list<T>::insert_first_node(const T &data)
{
node<T> *new_node = get_new_node(data);
new_node->next = head;
head = new_node;
return;
}
template <typename T> // Inser at a given position
void singly_linked_list<T>::insert(const T &data, int index)
{
try
{
// Verify the index
if (index < 0 || index > len)
{
throw runtime_error("Exception: index out of bounds");
}
this->len++;
if (index == 0)
{
insert_first_node(data);
}
node<T> *head = get_head_node();
int current_index{1};
node<T> *new_node = NULL;
while (head)
{
if (current_index == index)
{
new_node = get_new_node(data);
new_node->next = head->next;
head->next = new_node;
break;
}
current_index++;
head = head->next;
}
}
catch (const exception &e)
{
cout << e.what() << '\n';
}
}
template <typename T> // Remove a node
bool singly_linked_list<T>::remove(const T &key)
{
try
{
if (this->len <= 0 || this->head == NULL)
{
throw runtime_error("Exception: Illegal operation called");
}
if (len == 1)
{
node<T> *temp = this->head;
this->head = NULL;
delete temp;
this->len--;
return true; // If removed return true else return false
}
if (this->head->data == key)
{
node<T> *temp = this->head;
this->head = this->head->next;
delete temp;
this->len--;
return true;
}
node<T> *head_node_ref = get_head_node();
node<T> *prev = NULL;
while (head_node_ref)
{
if (head_node_ref->data == key)
{
prev->next = head_node_ref->next;
delete head_node_ref;
this->len--;
return true;
}
prev = head_node_ref;
head_node_ref = head_node_ref->next;
}
}
catch (const exception &e)
{
cout << e.what() << '\n';
}
return false;
}
template <typename T> // Remove the node at given index
bool singly_linked_list<T>::remove_at(int index)
{
try
{
// Verify the given index
if (this->len <= 0 || index < 0 || index >= this->len)
{
throw runtime_error("Exception: Illegal operation called");
}
if (len == 1)
{
node<T> *temp = this->head;
this->head = NULL;
delete temp;
this->len--;
return true;
}
if (index == 0)
{
node<T> *temp = this->head;
this->head = this->head->next;
delete temp;
this->len--;
return true;
}
node<T> *head_node_ref = get_head_node();
node<T> *prev = NULL;
int current_index{0};
while (head_node_ref)
{
if (current_index == index)
{
prev->next = head_node_ref->next;
delete head_node_ref;
this->len--;
return true;
}
current_index++;
prev = head_node_ref;
head_node_ref = head_node_ref->next;
}
}
catch (const exception &e)
{
cout << e.what() << '\n';
}
}
template <typename T> // Remove all the nodes of the linked list
void singly_linked_list<T>::remove_all()
{
node<T> *temp = NULL;
while (head)
{
temp = head;
delete temp;
head = head->next;
this->len--;
}
}