-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLChain.h
439 lines (353 loc) · 11.8 KB
/
LChain.h
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
#ifndef ADS_LINKED_CHAIN_H
#define ADS_LINKED_CHAIN_H
#include "Node.h"
/**
* LChain.h
*
* Generic template that implements a linked chain.
*
* author: Giacomo Benincasa (me@gbenin.casa)
*/
namespace ADS
{
template<class T, class Comparator>
class LChain
{
public:
LChain (bool bSorted=true, bool bAscendentOrder=false);
virtual ~LChain (void);
/* Calls insert and returns the created node */
Node<T> * add (T element);
/* Inserts the element at the last position
(it does not ensure the order condition) */
int append (T element);
/* Change pNode's element */
T changeElement (Node<T> *pNode, T newElement);
/* Inserts the element at the right position */
int insert (T element);
/* Inserts the element at the root position
(it does not ensure the order condition) */
int prepend (T element);
/* Returns the fist element of the LChain if any, NULL otherwise.
If bResetCurrElemet is set on true, the pointer to the next
element will be re-set to the first element _before_ returning
the first element. After returning the first element, the pointer
to the next element will point to the second one.*/
T getFirst (bool bResetCurrElement=false);
/* Returns the next element in the list */
T getNext (void);
/* Returns and remove the head of the chain */
T peek (void);
/* Returns and remove the head of the chain */
T pop (void);
/* Removes element from the list and returns it if it was
found, returns NULL otherwise */
T remove (T element);
/* Removes the max if the queue is not ascending, the min if the queue
is ascending and returns it. (If the list is sorted, this is
equivalent to calling pop) */
T removeMaxMin (void);
/* Reset the pointer to the current element in the list */
void resetGet (void);
/* Returns true if the list is empty, false otherwise */
bool isEmpty (void);
/* Iterates through the list until the element is found.
Returns true if it is found, false otherwise */
bool seach (T element);
void display (void);
private:
/* creates a new node that contains element and adds it as the
next node of pPrev */
int insert (Node<T> *pNode);
int insert (Node<T> *pPrev, T element);
int insert (Node<T> *pPrev, Node<T> *pNewNode);
int prepend (Node<T> *pNode);
private:
bool _bSorted;
bool _bAscendentOrder;
Node<T> *_pRoot;
Node<T> *_pGetNext;
};
template<class T, class Comparator>
LChain<T, Comparator>::LChain (bool bSorted, bool bAscendentOrder)
{
_bSorted = bSorted;
_bAscendentOrder = bAscendentOrder;
_pRoot = _pGetNext = NULL;
}
template<class T, class Comparator>
LChain<T, Comparator>::~LChain()
{
}
template<class T, class Comparator>
Node<T> * LChain<T, Comparator>::add (T element)
{
Node<T> *pNode = new Node<T> (element);
int rc = insert (pNode);
if (rc < 0) {
/* the node was not inserted */
delete pNode;
return NULL;
}
return pNode;
}
template<class T, class Comparator>
int LChain<T, Comparator>::append (T element)
{
if (_pRoot == NULL)
_pRoot = new Node<T> (element);
else {
Node<T> *pTmp = _pRoot;
/* Go to the end of the list */
while (pTmp->pRightSibling != NULL)
pTmp = pTmp->pRightSibling;
pTmp->pRightSibling = new Node<T> (element);
}
return 0;
}
template<class T, class Comparator>
T LChain<T, Comparator>::changeElement (Node<T> *pNode, T newElement)
{
if (_pRoot == NULL)
return NULL;
if (!_bSorted) {
T oldElement = pNode->el;
pNode->el = newElement;
return oldElement;
}
Node<T> *pTmp = NULL;
if (Comparator::equals (pNode->el, _pRoot->el)) {
pTmp = _pRoot;
_pRoot = _pRoot->pRightSibling;
}
else {
Node<T> *pCurrNode = _pRoot;
while (pCurrNode != NULL) {
if (pCurrNode->pRightSibling == NULL)
break;
if (Comparator::equals (pNode->el, pCurrNode->pRightSibling->el)) {
pTmp = pCurrNode->pRightSibling;
pCurrNode->pRightSibling = pCurrNode->pRightSibling->pRightSibling;
break;
}
pCurrNode = pCurrNode->pRightSibling;
}
}
if (pTmp == NULL)
/* element was not found */
return NULL;
T oldElement = pTmp->el;
pTmp->el = newElement;
/* insert it back! */
insert (pTmp);
return oldElement;
}
template<class T, class Comparator>
int LChain<T, Comparator>::insert (T element)
{
return insert (new Node<T> (element));
}
template<class T, class Comparator>
int LChain<T, Comparator>::prepend (T element)
{
return prepend (new Node<T> (element));
}
template<class T, class Comparator>
T LChain<T, Comparator>::getFirst (bool bResetCurrElement)
{
if (bResetCurrElement) {
resetGet();
return getNext();
}
else if (_pRoot == NULL)
return NULL;
return _pRoot->el;
}
template<class T, class Comparator>
T LChain<T, Comparator>::getNext()
{
if (_pGetNext == NULL)
return NULL;
T tmpEl = _pGetNext->el;
_pGetNext = _pGetNext->pRightSibling;
return tmpEl;
}
template<class T, class Comparator>
T LChain<T, Comparator>::peek()
{
if (_pRoot == NULL)
return NULL;
return _pRoot->el;
}
template<class T, class Comparator>
T LChain<T, Comparator>::pop()
{
if (_pRoot == NULL)
return NULL;
Node<T> *pTmp = _pRoot;
_pRoot = _pRoot->pRightSibling;
if (_pGetNext == pTmp)
/* Make sure that _pGetNext does not
point to the element to be removed */
_pGetNext = _pRoot;
T element = pTmp->el;
delete pTmp;
return element;
}
template<class T, class Comparator>
T LChain<T, Comparator>::remove (T element)
{
if (_pRoot == NULL)
return NULL;
if (Comparator::equals (element, _pRoot->el)) {
T tmp = _pRoot->el;
Node<T> *pTmp = _pRoot->pRightSibling;
delete _pRoot;
_pRoot = pTmp;
return tmp;
}
Node<T> *pNode = _pRoot;
while (pNode != NULL) {
Node<T> *pNext = pNode->pRightSibling;
if (pNext == NULL)
return NULL;
if (Comparator::equals (element, pNext->el)) {
pNode->pRightSibling = pNext->pRightSibling;
T tmp = pNext->el;
delete pNext;
return tmp;
}
pNode = pNext;
}
return NULL;
}
template<class T, class Comparator>
T LChain<T, Comparator>::removeMaxMin (void)
{
if (_pRoot == NULL)
return NULL;
if (_bSorted)
/* if it's sorted the max/min will be at the head of the queue*/
return pop();
Node<T> *pPrev, *pCurr, *pPrevMaxMin, *pMaxMin;
pPrevMaxMin = NULL;
pPrev = pMaxMin = _pRoot;
pCurr = _pRoot->pRightSibling;
while (pCurr != NULL) {
if (_bAscendentOrder) {
if (Comparator::lessThan (pCurr->el, pMaxMin->el)) {
pPrevMaxMin = pPrev;
pMaxMin = pCurr;
}
}
else {
if (Comparator::greaterThan (pCurr->el, pMaxMin->el)) {
pPrevMaxMin = pPrev;
pMaxMin = pCurr;
}
}
pPrev = pCurr;
pCurr = pCurr->pRightSibling;
}
if (pPrevMaxMin == NULL)
/* the pMaxMin is the root */
return pop();
/* the node to be removed is not the root - update the pointer to the
next element of the previous node */
pPrevMaxMin->pRightSibling = pMaxMin->pRightSibling;
T element = pMaxMin->el;
delete pMaxMin;
return element;
}
template<class T, class Comparator>
void LChain<T, Comparator>::resetGet()
{
_pGetNext = _pRoot;
}
template<class T, class Comparator>
bool LChain<T, Comparator>::isEmpty (void)
{
return (_pRoot == NULL);
}
template<class T, class Comparator>
bool LChain<T, Comparator>::seach (T element)
{
Node<T> *pNode = _pRoot;
while (pNode != NULL) {
if (Comparator::equals (pNode->el, element))
return true;
pNode = pNode->pRightSibling;
}
return false;
}
template<class T, class Comparator>
void LChain<T, Comparator>::display()
{
for (Node<T> *pNode = _pRoot; pNode != NULL; pNode = pNode->pRightSibling)
pNode->el->display();
}
template<class T, class Comparator>
int LChain<T, Comparator>::insert (Node<T> *pNode)
{
if (!_bSorted) {
if (seach (pNode->el))
return -1;
/* Add the element only if not already in the list */
return prepend (pNode);
}
if (_pRoot == NULL) {
_pRoot = pNode;
return 0;
}
if (_bAscendentOrder) {
/* ascending order */
if (Comparator::lessThan (pNode->el, _pRoot->el))
return prepend (pNode);
}
else if (pNode->el > _pRoot->el)
/* descending order */
return prepend (pNode);
Node<T> *pCurrNode = _pRoot;
while (pCurrNode != NULL) {
if (pCurrNode->pRightSibling == NULL) {
pCurrNode->pRightSibling = pNode;
return 0;
}
if (_bAscendentOrder) {
/* ascending order */
if (Comparator::lessThan (pNode->el, pCurrNode->pRightSibling->el))
return insert (pCurrNode, pNode);
}
else if (Comparator::greaterThan (pNode->el, pCurrNode->pRightSibling->el))
/* descending order */
return insert (pCurrNode, pNode);
pCurrNode = pCurrNode->pRightSibling;
}
/* it should never get here... */
return -2;
}
template<class T, class Comparator>
int LChain<T, Comparator>::insert (Node<T> *pPrev, T element)
{
return insert (pPrev, new Node<T> (element));
}
template<class T, class Comparator>
int LChain<T, Comparator>::insert (Node<T> *pPrev, Node<T> *pNewNode)
{
if ((pPrev == NULL) || (pNewNode == NULL))
return -1;
Node<T> *pTmp = pPrev->pRightSibling;
pPrev->pRightSibling = pNewNode;
pNewNode->pRightSibling = pTmp;
return 0;
}
template<class T, class Comparator>
int LChain<T, Comparator>::prepend (Node<T> *pNode)
{
Node<T> *pTmp = _pRoot;
_pRoot = pNode;
_pRoot->pRightSibling = pTmp;
return 0;
}
}
#endif /* ADS_LINKED_CHAIN_H */