-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDNode.H
More file actions
executable file
·842 lines (816 loc) · 18.8 KB
/
Copy pathDNode.H
File metadata and controls
executable file
·842 lines (816 loc) · 18.8 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
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
/**
@file DNode.H
@brief Clase Nodo Doble.
Nodo Doblemente enlazado circular.
Cualquier duda o mejora informar al correo: erikvelasquez.25@gmail.com
@author Erik Velasquez
@date 4/2011, 4/2013, 3/2014
*/
#ifndef DNODE_H
#define DNODE_H
#include <iostream>
#include "ManejoExcepciones.H"
using namespace std;
/**
@class DNode
@brief Nodo doblemente enlazado circular
*/
template<class T> class DNode
{
private:
T data; //Dato a almacenar en el nodo
DNode<T> *next; //Puntero al siguiente Nodo
DNode<T> *prev; //puentero al nodo anterior
//atributos publicos de la clase
public:
/**
@brief Constructor por omision de la clase DNode
*/
DNode()
{
next=this;
prev=this;
}
/**
@brief destructor por omision de la clase DNode
*/
~DNode()
{
while(!this->isEmpty())
{
delete removeNext();
}
}
/**
@brief Constructor por copia de la clase DNode
*/
DNode(const T dat)
{
data=dat;
next=this;
prev=this;
}
/**
@brief retorna la data almacenada en el nodo
@return informacion almacenada en el nodo
*/
T& getData()
{
if(this == NULL)
{
throw NullNode();
}
return data;
}
/**
@brief resetea el nodo
@return nada
*/
void reset()
{
if(this == NULL)
{
throw NullNode();
}
next = this;
prev = this;
}
/**
@brief verifica si el nodo esta vacio
@return True si esta vacio, False en caso contrario
*/
bool isEmpty()
{
if(this == NULL)
{
throw NullNode();
}
return ((next == this)and(prev == this));
}
/**
@brief Verificamos si el nodo es unico
@return True si es unico, False en caso contrario
*/
bool isUnitarian()
{
if(this == NULL)
{
throw NullNode();
}
return ((this != next) and (next == prev));
}
/**
@brief Verificamos si el nodo es unico o tiene un solo elemento enlazado
@return True si es unico o tiene un solo elemento, False en caso contrario
*/
bool isUnitarianOrEmpty()
{
if(this == NULL)
{
throw NullNode();
}
return next == prev;
}
/**
@brief Obtenemos el siguiente nodo enlazado a el
@return puntero del siguiente nodo DNode<T>*
*/
DNode<T>*& getNext()
{
if(this == NULL)
{
throw NullNode();
}
return next;
}
/**
@brief Obtenemos el nodo anterior enlazado a el
@return puntero del nodo anterior DNode<T>*
*/
DNode<T>*& getPrev()
{
if(this == NULL)
{
throw NullNode();
}
return prev;
}
/**
@brief inserto un nodo despues de mi
@param nodo es el nodo a insertar
@return nada
*/
void insertNext(DNode<T> * node)
{
if(this == NULL)
{
throw NullNode();
}
if(node == NULL)
{
throw NullNode();
}
if(!node->isEmpty())
{
throw NodeNotUnitarian();
}
node->prev = this; //el nodo anterior de node sera nodo actual (this)
node->next = next; //el siguiente de node sera el siguiente de mi nodo actual (this)
next->prev = node; //el anterior de mi nodo siguiente sera el node
next = node; //mi siguiente nodo sera node
}
/**
@brief inserto un nodo despues de mi
@param data, valor a insertar
@return nada
*/
void insertNext(T data)
{
DNode<T> * node;
try
{
node = new DNode<T>(data);
}
catch(bad_alloc &e)
{
throw NoMemory();
}
this->insertNext(node);
}
/**
@brief inserto un nodo antes de mi
@param nodo es el nodo a insertar
@return nada
*/
void insertPrev(DNode<T> * node)
{
if(this == NULL)
{
throw NullNode();
}
if(node == NULL)
{
throw NullNode();
}
if(!node->isEmpty())
{
throw NodeNotUnitarian();
}
node->next = this; //el nodo siguiente de node sera nodo actual (this)
node->prev = prev; //el nodo anterior de node sera el anterior de mi nodo actual (this)
prev->next = node; //el siguiente de mi nodo anterior sera el node
prev = node; //mi anterior nodo sera node
}
/**
@brief inserto un nodo antes de mi
@param data, valor a insertar
@return nada
*/
void insertPrev(T data)
{
DNode<T> * node;
try
{
node = new DNode<T>(data);
}
catch(bad_alloc &e)
{
throw NoMemory();
}
this->insertPrev(node);
}
/**
@brief remuevo el nodo actual de la lista
@return nada
*/
void deleteNode()
{
if(this == NULL)
{
throw NullNode();
}
prev->next = next; //el siguiente de mi anterior sera mi siguiente
next->prev = prev; //el anterior de mi siguiente sera mi anterior
reset(); //mando mis punteros a apuntarme a mi
}
/**
@brief remuevo el nodo anterior de la lista
@return nada
*/
DNode<T> * removePrev()
{
if(this == NULL)
{
throw NullNode();
}
if(this->isEmpty())
{
throw NodeUnitarian();
}
DNode<T> * retValue; //defino el nodo auxiliar que contendra al nodo anterior
retValue = prev; //inicializo ese nodo auxiliar con el valor de mi nodo anterior
retValue->deleteNode(); //remuevo al nodo anterior de la lista
return retValue;
}
/**
@brief remuevo el nodo siguiente de la lista
@return nada
*/
DNode<T> * removeNext()
{
if(this == NULL)
{
throw NullNode();
}
if(this->isEmpty())
{
throw NodeUnitarian();
}
DNode<T> * retValue; //defino el nodo auxiliar que contendra al nodo siguiente
retValue = next; //inicializo ese nodo auxiliar con el valor de mi nodo siguiente
retValue->deleteNode(); //remuevo al nodo siguiente de la lista
return retValue;
}
/*FUNCIONES INTERESANTES*/
/**
@brief insertar ordenado siguiendo el criterio de menor a mayor
@param node nodo a intercambiar
@return nada
*/
void orderedInsertion(DNode<T> *node)
{
if(this == NULL)
{
throw NullNode();
}
if(node == NULL)
{
throw NullNode();
}
if(!node->isEmpty())
{
throw NodeNotUnitarian();
}
DNode<T> *aux;
DNode<T> *aux2;
aux = this->getNext(); //obtengo el siguiente nodo a mi nodo actual
aux2 = this; //mantengo una referencia a mi nodo actual
while(aux != this) //mientras mi nodo siguiente no sea mi nodo actual
{
if(node->data < aux->data) //verifico que el dato de mi nodo a insertar sea menor al nodo siguiente
{
aux2->insertNext(node); //inserto y termino el metodo
return;
}
aux2 = aux; //me muevo al siguiente nodo de la lista
aux = aux->getNext();
}
aux2->insertNext(node); //inserto el nodo en la ultima posicion de la lista
}
/**
@brief insertar ordenado siguiendo el criterio de menor a mayor
@param node nodo a intercambiar
@return nada
*/
void orderedInsertion(T data)
{
DNode<T> * node;
try
{
node = new DNode<T>(data);
}
catch(bad_alloc &e)
{
throw NoMemory();
}
this->orderedInsertion(node);
}
/**
@brief permite intercambiar los elementos de dos nodos
@param node,puntero al nodo a intercambiar
@return nada
*/
void swap(DNode<T> * node)
{
if(this == NULL)
{
throw NullNode();
}
if(node == NULL)
{
throw NullNode();
}
if (isEmpty() and node->isEmpty()) //verifico si los dos nodos son vacios
return;
if (isEmpty()) //verifico si el nodo actual(this) es el que esta vacio
{
node->next->prev = this; //el anterior del siguiente nodo de node apuntara a mi actual
node->prev->next = this; //el siguiente del anterior del nodo de node apuntara a mi actual
next = node->next; //el siguiente de mi actual apuntara al siguiente de node
prev = node->prev; //el anterior de mi actual apuntara al anterior de node
node->reset(); //reseteamos al valor de node
return;
}
if (node->isEmpty()) //verifico si el node es vacio
{
next->prev = node; //el anterior del siguiente nodo de mi nodo actual(this) apuntara a node
prev->next = node; //el siguiente del anterior nodo de mi nodo actual apuntara a node
node->next = next; //el siguiente de node apuntara a el siguiente de mi actual
node->prev = prev; //el anterior de node apuntara a el anterior de mi actual
reset(); //reseteamos al valor de mi actual
return;
}
//hago las llamadas RECURSIVAS en el caso de que los dos nodos forman parte de una lista
//el siguiente del anterior de mi nodo actual con el siguiente del anterior de node
//el anterior del siguiente de mi nodo actual con el anterior del siguiente de node
//el anterior de mi nodo actual con el anterior de node
//el siguiente de mi nodo actual con el siguiente de node
std::swap(prev->next, node->prev->next);
std::swap(next->prev, node->next->prev);
std::swap(prev, node->prev);
std::swap(next, node->next);
}
/**
@brief permite intercambiar los elementos de dos nodos
@param node, nodo a intercambiar
@return nada
*/
void swap(DNode<T> & node)
{
this->swap(&node);
}
/**
@brief insertamos una lista completa como siguiente nodo
@param head, puntero a cabecera de la lista a concatenar
@return nada
*/
void insertListNext(DNode<T> * head)
{
if(this == NULL)
{
throw NullNode();
}
if(head == NULL)
{
throw NullNode();
}
if (head->isEmpty()) //verificamos que la cabecera de la lista a insertar no este vacia
return;
head->prev->next = next; //el siguiente del anterior de la cabecera apuntara a el siguiente de mi nodo actual
head->next->prev = this; //el anterior del siguiente de la cabecera apuntara a el anterior de mi nodo actual
next->prev = head->prev; //el anterior del siguiente de mi nodo actual apuntara a el anterior de la cabecera
next = head->next; //el siguiente de mi nodo actual apuntara al siguiente de la cabecera
head->reset(); //reseteamos la cabecera
}
/**
@brief insertamos una lista completa como siguiente nodo
@param head cabecera de la lista a concatenar
@return nada
*/
void insertListNext(DNode<T> & head)
{
this->insertListNext(&head);
}
/**
@brief insertamos una lista completa como nodo anterior
@param head, puntero a cabecera de la lista a concatenar
@return nada
*/
void insertListPrev(DNode<T> * head)
{
if(this == NULL)
{
throw NullNode();
}
if(head == NULL)
{
throw NullNode();
}
if (head->isEmpty()) //verificamos que la cabecera de la lista a insertar no este vacia
return;
head->next->prev = prev; //el anterior del siguiente de la cabecera apuntara a el anterior de mi nodo actual
head->prev->next = this; //el siguiente del anterior de la cabecera apuntara a mi nodo actual
prev->next = head->next; //el siguiente del anterior de mi nodo actual apuntara al siguiente de la cabecera
prev = head->prev; //el anterior de mi nodo actual apuntara al anterior de la cabecera
head->reset(); //reseteamos la cabecera
}
/**
@brief insertamos una lista completa como nodo anterior
@param head, cabecera de la lista a concatenar
@return nada
*/
void insertListPrev(DNode<T> & head)
{
this->insertListPrev(&head);
}
/**
@brief concatena dos listas
@param head, puntero a cabecera de la lista a concatenar
@return nada
*/
void concatList(DNode<T> * head)
{
if(this == NULL)
{
throw NullNode();
}
if(head == NULL)
{
throw NullNode();
}
if (head->isEmpty()) //verificamos que la cabecera de la lista a concatenar no este vacia
return;
if (this->isEmpty()) //verificamos que la lista actual no este vacia
{
swap(head); //intercambio la lista actual con la cabecera de la lista a concatenar
return;
}
prev->next = head->next; //el siguiente del anterior de mi nodo actual apuntara al siguiente de la cabecera
head->next->prev = prev; //el anterior del siguiente de la cabecera apuntara al anterior de mi nodo actual
prev = head->prev; //el anterior de mi nodo actual apuntara al anterior de la cabecera
head->prev->next = this; //el siguiente del anterior de la cabecera apuntara al mi nodo actual
head->reset(); //reseteamos la cabereca
}
/**
@brief concatena dos listas
@param head, cabecera de la lista a concatenar
@return nada
*/
void concatList(DNode<T> & head)
{
this->concatList(&head);
}
/**
@brief permite invertir los elementos de una lista
@return nada
*/
void reverseList()
{
if(this == NULL)
{
throw NullNode();
}
if (isEmpty()) //verifico que la lista no este vacia
return;
DNode<T> aux; // Lista temporal donde se guarda lista invertida
while(not isEmpty()) //mientras la lista no este vacia
{
aux.insertNext(removeNext()); //remuevo un elemento de la lista y lo inserto en la auxiliar
}
swap(&aux); //intercambio las cabeceras de las listas
}
/**
@brief divide una lista actual en dos nuevas listas
@param l lista de los elementos izquierdos de la division
@param r lista de los elementos derechos de la division
@return nada
*/
void splitList(DNode<T> & l, DNode<T> & r)
{
if(this == NULL)
{
throw NullNode();
}
while (not isEmpty()) //mientras la lista no este vacia
{
l.insertPrev(removeNext()); //inserto en la lista izquierda
if (isEmpty()) //verifico que la lista no este vacia
break;
r.insertPrev(removeNext()); //inserto en la lista derecha
}
}
/**
@brief divide una lista a partir de un nodo especificado
@param node es el nodo a partir del cual se dividira la lista
@param list lista con los elementos substraidos de la lista
@return nada
*/
void cutList(DNode<T> * node, DNode<T> * list)
{
if(this == NULL)
{
throw NullNode();
}
if(node == NULL)
{
throw NullNode();
}
if(list == NULL)
{
throw NullNode();
}
if(!list->isEmpty()) //list debe estar vacia
return;
list->prev = prev; // enlazar list a node (punto de corte)
list->next = node;
prev = node->prev; // quitar de this todo lo que esta a partir de node
node->prev->next = this;
node->prev = list; // colocar el corte en list
list->prev->next = list;
}
/**
@brief sobre carga del operador ==
@param node nodo a comparar
@return true si son iguales, false contrario
*/
bool operator == (const DNode<T> & node)const
{
if(this->data != node.data)
{
return false;
}
if(this->next != node.next)
{
return false;
}
if(this->prev != node.prev)
{
return false;
}
return true;
}
/**
@brief sobre carga del operador =
@param v vector a copiar
@return la copia del vector
*/
const DNode<T> & operator = (const DNode<T> & node)
{
if(!isEmpty())
{
throw NodeNotUnitarian();
}
this->data = node.data;
this->next = node.next;
this->prev = node.prev;
return *this;
}
/**
@brief sobre carga del operador !=
@param node nodo a comparar
@return true si son diferentes, false contrario
*/
bool operator != (const DNode<T> & node)const
{
return !(*this == node);
}
/*DEFINICION DEL ITERADOR PARA CLASE DNODE*/
/**
@class Iterator
@brief Iterador sobre Nodos doblemente enlazados circulares
*/
class Iterator
{
private:
DNode<T> * head; //puntero a la cabecera de la lista
DNode<T> * curr; //puntero al nodo actual
public:
/**
@brief Constructor por omision de la clase
*/
Iterator()
{
head = curr = NULL;
}
/**
@brief Constructor por copia de nodo cabecera
*/
Iterator(DNode<T> * head_ptr)
{
if(head_ptr == NULL)
{
throw NullNode();
}
head = head_ptr;
curr = head->getNext();
}
/**
@brief Constructor por copia de nodo cabecera
*/
Iterator(DNode<T> & head_ptr)
{
head = &head_ptr;
curr = head->getNext();
}
/**
@brief Constructor por copia de cabecera
Iterator(DNode<T> & _head)
{
head = &_head;
curr = head->getNext();
};
/**
@brief Constructor por copia
*/
Iterator(DNode<T> * head_ptr, DNode<T> * curr_ptr)
{
if(head_ptr == NULL)
{
throw NullNode();
}
if(curr_ptr == NULL)
{
throw NullNode();
}
head = head_ptr;
curr = curr_ptr;
}
/**
@brief Constructor por copia de otro iterador
*/
Iterator(const Iterator & itor)
{
head = itor.head;
curr = itor.curr;
}
/**
@brief Sobre escritura del operador igual (=)
@param itor iterador a copiar
@return la copia del iterador
*/
Iterator & operator = (const Iterator & itor)
{
if (this == &itor)
return *this;
head = itor.head;
curr = itor.curr;
return *this;
}
/**
@brief Sobre escritura del operador igual (=)
@param head_ptr
@return la copia del iterador
*/
Iterator & operator = (DNode<T> * head_ptr)
{
if(head_ptr == NULL)
{
throw NullNode();
}
head = head_ptr;
curr = head->getNext();
return *this;
}
/**
@brief reiniciamos el iterador en el primer elemento de la lista
@return nada
*/
void resetFirst()
{
curr = head->getNext();
}
/**
@brief defino cual es el elemento actual
@param new_curr nodo que sera actual
@return nada
*/
void setCurrent(DNode<T> * new_curr)
{
if(new_curr == NULL)
{
throw NullNode();
}
curr = new_curr;
}
/**
@brief reseteo el iterador
@return nada
*/
void reset(DNode<T> * new_head, DNode<T> * new_curr)
{
if(new_head == NULL)
{
throw NullNode();
}
if(new_curr == NULL)
{
throw NullNode();
}
head = new_head;
curr = new_curr;
}
/**
@brief reseteo el iterador
@return nada
*/
void reset(DNode<T> * new_head)
{
if(new_head == NULL)
{
throw NullNode();
}
head = new_head;
curr = head->getNext();
}
/**
@brief verifico si mi actual es diferente a la cabecera de la lista
@return True si es distinto a la cabecera, False en caso contrario
*/
bool hasCurrent() const
{
return (curr != head);
}
/**
@brief obtengo el nodo actual
@return el nodo actual
*/
DNode<T> * getCurrent()
{
if (hasCurrent())
return curr;
return NULL;
}
/**
@brief verifico si estoy en el primer nodo de la lista
@return True si estoy en el primer nodo, False en caso contrario
*/
bool isInFirst() const
{
return (curr == head->next);
}
/**
@brief verifico si estoy en el ultimo nodo de la lista
@return True si estoy en el ultimo nodo, False en caso contrario
*/
bool isInLast() const
{
return (curr == head->prev);
}
/**
@brief muevo el iterador al nodo siguiente de la lista
@return nada
*/
void next()
{
curr = curr->getNext();
}
/**
@brief definimos el operador de comparacion (==)
@return True si son iguales, False en caso contrario
*/
bool operator == (const Iterator & it) const
{
return curr == it.curr;
}
/**
@brief definimos el operador distinto (!=)
@return True si son distintos, False en caso contrario
*/
bool operator != (const Iterator & it) const
{
return curr != it.curr;
}
/**
@brief remuevo el elemento actual de la lista
@return puntero del elemento eliminado
*/
DNode<T> * del()
{
DNode<T> * current = getCurrent();
next();
current->del();
return current;
}
};//fin clase Iterator
};//fin clase DNode
#endif