-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDLLCPP
396 lines (359 loc) · 6.92 KB
/
DLLCPP
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
#include "DoublyLinkedList.hpp"
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <string>
using namespace std;
DoublyLinkedList::Node::Node(DataType data)
{
value = data;
next = NULL;
prev = NULL;
}
DoublyLinkedList::DoublyLinkedList()
{
head_= NULL;
tail_= NULL;
size_ = 0;
}
DoublyLinkedList::~DoublyLinkedList()
{
while (head_ != NULL)
{
remove_front();
}
head_ = NULL;
tail_ = NULL;
size_ = 0;
}
bool DoublyLinkedList::empty() const
{
if (size_ == 0) return true;
else return false;
}
unsigned int DoublyLinkedList::size() const
{
return size_;
}
void DoublyLinkedList::print() const
{
//>0 Nodes
if (head_ != NULL)
{
Node* temp;
temp = head_;
cout << (temp->value)<< ", ";
while (temp-> next != NULL)
{
temp = temp->next;
cout << (temp->value)<< " " ;
}
}
else
//No Nodes
{
cout << "List is empty.";
}
cout <<"\n";
}
bool DoublyLinkedList::insert_front(DataType value)
{
if(size_ == CAPACITY) return false;
Node* newFront = new Node(value);
newFront->next = NULL;
newFront->prev = NULL;
//No Nodes
if (head_ == NULL)
{
head_= newFront;
tail_= head_;
size_ = size_ + 1;
return true;
}
//1 or more Nodes
else
{
newFront->next = head_;
head_->prev = newFront;
head_= newFront;
size_ = size_ + 1;
return true;
}
}
bool DoublyLinkedList::remove_front()
{
//No Nodes
if (size_ == 0) return false;
//1 Node
if (size_ == 1)
{
delete head_;
head_ = NULL;
tail_ = NULL;
size_ = size_ - 1;
return true;
}
//>1 Node
else
{
Node* temp;
temp = head_->next;
delete head_;
head_ = temp;
temp->prev = NULL;
size_ = size_ - 1;
return true;
}
}
bool DoublyLinkedList::insert_back(DataType value)
{
if(size_ == CAPACITY) return false;
Node* newBack = new Node(value);
newBack->next = NULL;
newBack->prev = NULL;
//No Nodes
if (head_ == NULL)
{
head_ = newBack;
tail_ = newBack;
size_ = size_ + 1;
return true;
}
//>1 Nodes
else {
Node* temp;
temp = tail_;
tail_-> next = newBack;
tail_ = newBack;
newBack->next = NULL;
tail_ -> prev = temp;
size_ = size_ + 1;
return true;
}
}
bool DoublyLinkedList::remove_back()
{
//No Nodes
if (head_ == NULL)
{
return false;
}
//1 Node
if (head_->next == NULL)
{
delete head_;
head_= NULL;
tail_ = NULL;
size_ = size_ - 1;
return true;
}
//>1 Node
Node* temp;
temp = tail_ -> prev;
delete tail_;
tail_ = temp;
tail_ -> next = NULL;
size_ = size_ - 1;
return true;
}
bool DoublyLinkedList::insert(DataType value, unsigned int index)
{
//this method will make the new node's index in the linked list the target index that was passed to it
//No Nodes
if (head_== NULL)
{
if (index == 0)
{
Node* newNode = new Node(value);
head_ = newNode;
tail_ = head_;
size_ = size_ + 1;
return true;
}
else return false;
}
//the same process is true whether there is 1 or more Nodes if the given index is 0
else if (index == 0)
{
Node* newNode = new Node(value);
newNode->next = head_;
head_->prev = newNode;
head_ = newNode;
return true;
}
if(size_ == CAPACITY) return false;
int matchIndex = 0;
Node* temp;
Node* temp2;
temp2 = NULL;
temp = head_;
while (temp->next != NULL)
{
if (matchIndex+1 == index)
{
Node* newNode = new Node(value);
temp2 = temp->next;
temp->next = newNode;
newNode->prev = temp;
newNode->next = temp2;
temp2->prev = newNode;
size_ = size_ + 1;
return true;
}
temp= temp->next;
matchIndex= matchIndex + 1;
}
return false;
//the above loop doesn't insert when the index given is equal to the size of the list (inserting at the end), so here's a case for it//if the index does not exist withtin the list
}
bool DoublyLinkedList::remove(unsigned int index)
{
//No Nodes
if (size_ == 0) return false;
if (index > size_ - 1) return false;
//1 Node
if (head_->next == NULL)
{
if (index != 0) return false;
else remove_front();
}
//count the number of elements in the list; if the index is greater than this then we cannot remove the node
if (index > size_ - 1) return false;
//while we are at it, we will make a case for if the index is the last element in the list
if (index == size_ -1) remove_back();
Node* temp;
temp = head_;
Node* temp2;
temp2= NULL;
int count =0;
while (temp->next->next != NULL)
{
if (count + 1 == index)
{
temp2 = temp->next->next;
delete temp->next;
temp->next = temp2;
temp2->prev = temp;
size_ = size_ - 1;
return true;
}
temp= temp->next;
count= count +1;
}
return false;
}
unsigned int DoublyLinkedList::search(DataType value) const
{
//No Nodes
if (head_ == NULL) return 0;
//>0 Nodes
int count = 0;
Node* temp;
temp = head_;
while (temp->next != NULL)
{
if (temp->value == value)
{
return count;
}
temp= temp->next;
count= count +1;
}
return size_;
}
DoublyLinkedList::DataType DoublyLinkedList::select(unsigned int index) const
{
//No Nodes, 1 Node, or index is greater than list size
if (index > size_ -1 || size_ == 1) return tail_->value;
if (size_== 0) return -1;
//>1Nodes
int count = 0;
Node* tempy;
tempy = head_;
while (tempy->next != NULL)
{
if (count == index)
{
return tempy->value;
}
tempy= tempy->next;
count= count + 1;
}
return tail_->value;
}
bool DoublyLinkedList::replace(unsigned int index, DataType value)
{
//No Nodes
if (head_ == NULL) return false;
if (index > size_-1) return false;
//1 Node
if (head_->next == NULL)
{
Node* newNode = new Node(value);
delete head_;
head_ = newNode;
tail_ = newNode;
return true;
}
//count the number of elements in the list; if the index is greater than this then we cannot replace the node
//from this point forth, it will always be possible to replace a node, so let's go ahead_ and define the new node
Node* newNode = new Node(value);
//while we are at it, we will make a case for if the index is the last element in the list
if (index == size_-1)
{
remove_back();
insert_back(value);
}
if (index = 0)
{
remove_front();
insert_front(value);
}
Node* temp;
temp = head_;
Node* temp2;
temp2= NULL;
int count =0;
while (temp->next->next != NULL)
{
if (count + 1 == index)
{
temp2 = temp->next->next;
delete temp->next;
temp->next = newNode;
newNode->prev = temp;
temp2->prev = newNode;
newNode->next = temp2;
return true;
}
temp= temp->next;
count= count +1;
}
return false;
}
DoublyLinkedList::Node* DoublyLinkedList::getNode(unsigned int index) const
{
//No Nodes
if (head_== NULL) return NULL;
if (index > size_-1) return NULL;
if (index == size_-1) return tail_;
if (index == 0) return head_;
//1 Node
if (head_->next == NULL) return head_;
//>1Nodes
int matchIndex =0;
Node* temp;
temp = head_;
while (temp->next != NULL)
{
temp= temp->next;
matchIndex= matchIndex + 1;
if (matchIndex == index) return temp;
}
return NULL;
}
bool DoublyLinkedList::full() const
{
if (size_ <= 65536) return false;
else return true;
}