This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
FuncAux.cpp
1282 lines (1128 loc) · 30.4 KB
/
FuncAux.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
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
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "FuncAux.h"
//#ifndef FUNCAUX_CPP
//#define FUNCAUX_CPP
struct NodoListaAux {
int dato;
bool esVacio;
NodoListaAux *sig;
NodoListaAux(int x, bool vacio) : dato(x), esVacio(vacio), sig(NULL) {}
NodoListaAux() : dato(-1), esVacio(true), sig(NULL) {} //constructor por defecto
};
/*
struct NodoABNivel {
int dato;
int nivel;
NodoABNivel *izq;
NodoABNivel *der;
NodoABNivel() : dato(-1), izq(NULL), der(NULL), nivel(-1) {}
NodoABNivel(int x, int n) : dato(x), izq(NULL), der(NULL), nivel(n) {}
};
*/
namespace FrameworkA1
{
void append(char *&str, const char *strA);
char *intToStr(int i);
unsigned int cantDatos(NodoLista* l);
unsigned int cantDatos(NodoListaAux* l);
NodoAB *convertListaAuxToAB(NodoListaAux* & l, int &largo);
NodoAG *convertListaAuxToAG(NodoListaAux* & l, int &largo);
void destruir(NodoListaAux *&l);
void agregarFin(NodoLista *&l, int val);
void abALista(NodoAB *a, NodoLista *&l);
unsigned int pow2(unsigned pwr);
unsigned int altura(NodoAB* a);
void imprimirListaAux(NodoLista *l);
char *abAStrAux(NodoAB *a);
void borrarPpio(NodoListaAux* & l);
void listaAVector(NodoLista *l, int *vec, int &pos);
int *listaAVectorOrdenado(NodoLista *l, int &largoVec);
char *agAStrAux(NodoAG *a);
void abAVector(NodoAB *a, int *vec, int &pos);
void agAVector(NodoAG *a, int *vec, int &pos);
int *agAVectorOrdenado(NodoAG *a, int &largoVec);
NodoListaAux* splitStringToListaAux(char *stringDatos);
void convertListaAuxToAG(NodoListaAux* &l, NodoAG *&a, int &largo);
void recorroABYCargoVector(NodoAB *a, NodoAB **vec, unsigned int posVecActual, unsigned int largoVec);
char *serializar(int i);
void serializarAux(NodoLista *l, char *&str);
NodoAG* parsearAG(char *stringDatos, int &largo);
/*
PRE:
POS:ordena el vector recibido
*/
void ordenarVector(int *vec, int largoVec);
/*
PRE:
POS:devuelve un vector ordenado con los datos del arbol a
*/
int *abAVectorOrdenado(NodoAB *a, int &largoVec);
/*
PRE:
POS: concatena dest y src, poniendo src al final de dest. Aumenta el tamaño de dest.
*/
void concat(char *&dest, const char *src);
/*
PRE: debe recibir un vector de strings del largo indicado
POS: imprime el vector vec
*/
void imprimirVectorStrings(char** vec, int largo);
/*
PRE: debe recibir una matriz que debe tener las columnas y filas indicadas
POS: imprime matriz mat
*/
void imprimirMatrizInts(int** mat, int columnas, int filas);
/*
PRE:
POS:Imprime lista l
*/
void imprimirLista(NodoLista *l);
/*
PRE: todos los caracteres de stringDatos son enteros. Formato: "1,4,7,2"
POS: devuelve un vector con los enteros de stringDatos y retorna la cantidad de datos en el parametro largo
El vector retornado debe ser destruido
*/
int *parsearVectorInt(char *stringDatos, int &largo);
/*
PRE: todos los caracteres de stringDatos son strings. Formato: "'str1','str2','str3'"
POS: devuelve un vector de strings con los datos de stringDatos y retorna la cantidad de datos en el parametro largo
El vector retornado y cada uno de los strings debe ser destruido
*/
char **parsearVectorStrings(char *stringDatos, int &largo);
/*
PRE: todos los caracteres de stringDatos son enteros. Formato "2,4,1,8"
POS: devuelve una lista con los enteros de stringDatos y el largo
*/
NodoLista *parsearLista(char *stringDatos, int &largo);
/*
PRE: los caracteres de stringDatos son enteros o #. # indica fin de la rama. Formato "2,#,8,1,2"
POS: devuelve una arbol con los datos de stringDatos y la cantidad de elementos
*/
NodoAB* parsearAB(char *stringDatos, int &largo);
/*
PRE:
POS: devuelve una nueva lista, igual a l
*/
NodoLista *copiarLista(NodoLista *l);
/*
PRE:
POS: devuelve la altura de a
*/
unsigned int altura(NodoAB* a);
/*
PRE:
POS: devuelve cantidad de nodos de a
*/
unsigned int cantDatos(NodoAB* a);
/*
PRE:
POS: retorna el maximo de un AB no vacio
*/
int maxAB(NodoAB *a);
/*
PRE:
POS: retorna el minimo de un AB no vacio
*/
int minAB(NodoAB *a);
unsigned int cantDatos(NodoAG* a);
}
void FrameworkA1::imprimirVectorStrings(char** vec, int largo){
if(vec!=NULL){
for(int i=0; i < largo; i++){
int j = 0;
while(vec[i][j]!='\0') {
cout<<vec[i][j];
j++;
}
cout<<" ";
}
cout << endl;
}else
cout<<"Array Vacio!"<<endl;
}
void FrameworkA1::imprimirMatrizInts(int** mat, int columnas, int filas){
if(mat!=NULL){
for(int f=0; f < filas; f++){
for(int c=0; c < columnas; c++){
cout<<mat[c][f] <<"\t";
}
cout<<endl;
}
}else
cout<<"Matriz Vacia!"<<endl;
}
void FrameworkA1::imprimirListaAux(NodoLista *l) {
if (l == NULL)
return;
cout << l->dato;
if (l->sig != NULL)
cout << ",";
imprimirListaAux(l->sig);
}
void FrameworkA1::imprimirLista(NodoLista *l) {
cout << "{";
imprimirListaAux(l);
cout << "}";
}
void FrameworkA1::imprimirEsperadoVsRecibido(NodoLista *esp, NodoLista *rec) {
cout << "\tParametros de entrada: FrameworkA1::ver ARCHIVO DE PRUEBAS" << endl;
cout << "\tSe esperaba: ";
imprimirLista(esp);
cout << endl;
cout << "\tSe recibio: ";
imprimirLista(rec);
cout << endl;
}
void FrameworkA1::imprimirEsperadoVsRecibido(NodoLista *esp, NodoLista *rec, const char *inputParametersFormated) {
cout << "\tParametros de entrada: " << inputParametersFormated << endl;
cout << "\tSe esperaba: ";
imprimirLista(esp);
cout << endl;
cout << "\tSe recibio: ";
imprimirLista(rec);
cout << endl;
}
void FrameworkA1::imprimirEsperadoVsRecibido(NodoAB *esp, NodoAB *rec, const char *inputParametersFormated) {
cout << "\tParametros de entrada: " << inputParametersFormated << endl;
cout << "\tSe esperaba: " << serializar(esp) << endl;
cout << "\tSe recibio: " << serializar(rec) << endl;
}
void FrameworkA1::imprimirEsperadoVsRecibido(NodoAG *esp, NodoAG *rec, const char *inputParametersFormated) {
cout << "\tParametros de entrada: " << inputParametersFormated << endl;
cout << "\tSe esperaba: " << serializar(esp) << endl;
cout << "\tSe recibio: " << serializar(rec) << endl;
}
void FrameworkA1::imprimirEsperadoVsRecibido(bool esp, bool rec, const char *inputParametersFormated) {
cout << "\tParametros de entrada: " << inputParametersFormated << endl;
cout << "\tSe esperaba: " << serializar(esp) << endl;
cout << "\tSe recibio: " << serializar(rec) << endl;
}
void FrameworkA1::imprimirEsperadoVsRecibido(int esp, int rec, const char *inputParametersFormated) {
cout << "\tParametros de entrada: " << inputParametersFormated << endl;
cout << "\tSe esperaba: " << serializar(esp) << endl;
cout << "\tSe recibio: " << serializar(rec) << endl;
}
void FrameworkA1::imprimirEsperadoVsRecibido(const char *esp, const char *rec, const char *inputParametersFormated) {
cout << "\tParametros de entrada: " << inputParametersFormated << endl;
cout << "\tSe esperaba: " << esp << endl;
if (rec != NULL)
cout << "\tSe recibio: " << rec << endl;
else
cout << "\tSe recibio: " << "NULL" << endl;
}
void FrameworkA1::ver(bool res, int &correctos, int &error) {
if (res == true)
correctos++;
else
error++;
}
void FrameworkA1::imprimirResultadoPrueba(const char *nomFuncion, int &nroPrueba, int &correctos, int &error,
int &correctosTotal, int &errorTotal, int &ejCorrectosTotal, int &ejErrorTotal)
{
cout << "----------------------------------------------" << endl;
if (error == 0)
cout << "PRUEBAS FUNCION " << setw(50) << std::left << nomFuncion << " PRUEBAS CORRECTAS" << endl;
else
cout << "PRUEBAS FUNCION " << setw(50) << std::left << nomFuncion << " HAY PRUEBAS INCORRECTAS" << endl;
cout << "----------------------------------------------" << endl;
nroPrueba = 1;
correctosTotal += correctos;
errorTotal += error;
error == 0 ? ejCorrectosTotal++ : ejErrorTotal++;
correctos = error = 0;
}
//
//// IMPRIME LOS ELEMENTOS DEL ARBOL POR NIVELES CON EL #. TODO: quitar los # del final (pero que quede siempre par)
//void imprimirABAux(NodoAB *a) {
// if(a==NULL){
// return;
// }
// ColaArray c = crearColaArray(pow2(altura(a)+1) - 1); // calculo lugar para todos los nodos del arbol como si fuera completo mas un nivel extra por los #
// encolar(c, a);
// while(!esVacia(c)){
// NodoAB* nodo = (NodoAB*)frente(c);
// if (nodo == NULL)
// cout << "#";
// else
// cout << nodo->dato;
//
// desencolar(c);
// if (nodo != NULL) {
// //if (nodo->izq != NULL) {
// encolar(c, nodo->izq);
// //}
// //if (nodo->der != NULL) {
// encolar(c, nodo->der);
// //}
// }
// if (!esVacia(c))
// cout << ",";
// }
// FrameworkA1::destruir(c);
// return;
//}
void FrameworkA1::recorroABYCargoVector(NodoAB *a, NodoAB **vec, unsigned int posVecActual, unsigned int largoVec) {
if (a==NULL)
return;
recorroABYCargoVector(a->izq, vec, 2*posVecActual+1, largoVec);
assert(posVecActual < largoVec);
vec[posVecActual] = a;
recorroABYCargoVector(a->der, vec, 2*posVecActual+2, largoVec);
}
void FrameworkA1::imprimirABGrande(NodoAB *a) {
// imprimirAB(a);
if (a == NULL) {
cout << "Arbol vacio" << endl;
return;
}
unsigned int alt = altura(a);
unsigned int largoVec = pow2(alt) - 1;
NodoAB **vec = new NodoAB*[largoVec];
for (unsigned int i=0; i<largoVec; i++)
vec[i] = NULL;
recorroABYCargoVector(a, vec, 0, largoVec);
//for (unsigned int i=0; i<largoVec; i++) {
// if (vec[i] == NULL)
// cout << "# ";
// else
// cout << vec[i]->dato << " ";
//}
//cout << endl;
unsigned int cantNodosUltimoNivel = pow2(alt-1);
for (unsigned int i=1; i<=alt; i++) {
unsigned int posInicialNivel = pow2(i-1) - 1;
unsigned int cantNodosNivel = pow2(i-1);
unsigned int espacios;
if (alt == i) {
espacios = 0;
cout << " ";
}
else
espacios = pow2(alt - i - 1);
//for (unsigned int i=0; i<espacios; i++) {
// cout << setw(3) << "";
//}
for (unsigned int j=posInicialNivel; j<posInicialNivel+cantNodosNivel; j++) {
for (unsigned int k=0; k<espacios; k++)
cout << setw(3) << "";
assert(j < largoVec);
if (vec[j] == NULL)
cout << setw(3) << "#";
else
cout << setw(3) << vec[j]->dato;
//for (unsigned int i=0; i<espacios; i++)
// cout << setw(3) << "";
}
cout << endl;
}
}
// PRE:
// POS: RETORNA STRING CON LOS ELEMENTOS DEL ARBOL POR NIVELES CON EL #. NOTA: tambien quita los # del final pero lo deja siempre par)
char *FrameworkA1::abAStrAux(NodoAB *a) {
int numConsecutivos = 0, cantElementos = 0;
char *ret = copioString("");
char *aux;
if(a==NULL){
return ret;
}
ColaArray c = crearColaArray(pow2(altura(a)+1) - 1); // calculo lugar para todos los nodos del arbol como si fuera completo mas un nivel extra por los #
ColaArray salida = crearColaArray(pow2(altura(a)+1) - 1); // calculo lugar para todos los nodos del arbol como si fuera completo mas un nivel extra por los #
encolar(c, a);
while(!esVacia(c)){
NodoAB* nodo = (NodoAB*)frente(c);
if (nodo == NULL) {
aux = copioString("#");
encolar(salida, aux);
numConsecutivos++;
cantElementos++;
}
else {
aux = intToStr(nodo->dato);
encolar(salida, aux);
numConsecutivos = 0;
cantElementos++;
}
desencolar(c);
if (nodo != NULL) {
//if (nodo->izq != NULL) {
encolar(c, nodo->izq);
//}
//if (nodo->der != NULL) {
encolar(c, nodo->der);
//}
}
}
destruir(c);
if (numConsecutivos % 2 != 0)
numConsecutivos--;
int cantidadACopiar = cantElementos - numConsecutivos;
// concateno en el string a retornar
concat(ret, "{");
for (int i=0; i<cantidadACopiar; i++) { //while (!esVacia(salida)) {
aux = (char*)frente(salida);
desencolar(salida);
concat(ret, aux);
delete [] aux;
if (i < cantidadACopiar-1) {
concat(ret, ",");
}
}
concat(ret, "}");
destruir(salida);
return ret;
}
// PRE:
// POS: RETORNA STRING CON LOS ELEMENTOS DEL AG
char *FrameworkA1::agAStrAux(NodoAG *a) {
char *ret = copioString("");
if(a==NULL){
append(ret, ",#");
return ret;
}
append(ret, ",");
char *aux = intToStr(a->dato);
append(ret, aux);
char *ph = agAStrAux(a->ph);
append(ret, ph);
delete [] ph;
char *sh = agAStrAux(a->sh);
append(ret, sh);
delete [] sh;
return ret;
}
unsigned int FrameworkA1::pow2( unsigned pwr ) {
return pwr==0? 1 : 2*pow2(pwr-1);
}
char *FrameworkA1::copioString(const char *str) {
unsigned int len = strlen(str) + 1;
char *ret = new char[len];
strcpy_s(ret, len, str);
return ret;
}
void FrameworkA1::append(char *&str, const char *strA)
{
unsigned int l = strlen(str) + strlen(strA) + 1;
char *ret = new char[l];
strcpy_s(ret, l, str);
strcat_s(ret, l, strA);
delete [] str;
str = ret;
}
char *FrameworkA1::intToStr(int i) {
unsigned int len = 11 + 1; // int min: -2147483648 max: 2147483647
char *ret = new char[len];
_itoa_s(i, ret, len, 10);
char *ret2 = copioString(ret); // reservo la memoria justa
delete [] ret;
return ret2;
}
void FrameworkA1::concat(char *&dest, const char *src) {
unsigned int retL = strlen(dest) + strlen(src) + 1;
char *ret = new char[retL];
strcpy_s(ret, retL, dest);
strcat_s(ret, retL, src);
delete [] dest;
dest = ret;
}
NodoLista * FrameworkA1::copiarLista(NodoLista *l) {
if (l == NULL)
return NULL;
NodoLista *n = new NodoLista(l->dato);
n->sig = copiarLista(l->sig);
return n;
}
void FrameworkA1::borrarPpio(NodoListaAux* & l) {
NodoListaAux* temp = l;
l = l->sig;
delete temp;
}
void FrameworkA1::agregarFin(NodoLista *&l, int val)
{
if (l == NULL)
l = new NodoLista(val);
else
agregarFin(l->sig, val);
}
void FrameworkA1::ordenarVector(int *vec, int largoVec) {
for (int i = 0; i < largoVec; i++) {
for (int j = 0; j < largoVec - 1; j++) {
if (vec[j] > vec[j + 1]) {
int aux = vec[j];
vec[j] = vec[j + 1];
vec[j + 1] = aux;
}
}
}
}
void FrameworkA1::listaAVector(NodoLista *l, int *vec, int &pos)
{
if (l != NULL) {
vec[pos++] = l->dato;
listaAVector(l->sig, vec, pos);
}
}
int *FrameworkA1::listaAVectorOrdenado(NodoLista *l, int &largoVec) {
largoVec = cantDatos(l);
int *vec = new int[largoVec];
int pos = 0;
listaAVector(l, vec, pos);
ordenarVector(vec, largoVec);
return vec;
}
void FrameworkA1::abAVector(NodoAB *a, int *vec, int &pos)
{
if (a != NULL) {
abAVector(a->izq, vec, pos);
vec[pos++] = a->dato;
abAVector(a->der, vec, pos);
}
}
int *FrameworkA1::abAVectorOrdenado(NodoAB *a, int &largoVec) {
largoVec = cantDatos(a);
int *vec = new int[largoVec];
int pos = 0;
abAVector(a, vec, pos);
ordenarVector(vec, largoVec);
return vec;
}
void FrameworkA1::agAVector(NodoAG *a, int *vec, int &pos)
{
if (a != NULL) {
agAVector(a->ph, vec, pos);
vec[pos++] = a->dato;
agAVector(a->sh, vec, pos);
}
}
int *FrameworkA1::agAVectorOrdenado(NodoAG *a, int &largoVec) {
largoVec = cantDatos(a);
int *vec = new int[largoVec];
int pos = 0;
agAVector(a, vec, pos);
ordenarVector(vec, largoVec);
return vec;
}
unsigned int FrameworkA1::cantDatos(NodoListaAux* l) {
if (l == NULL)
return 0;
return cantDatos(l->sig) + 1;
}
unsigned int FrameworkA1::cantDatos(NodoLista* l) {
if (l == NULL)
return 0;
return cantDatos(l->sig) + 1;
}
unsigned int FrameworkA1::cantDatos(NodoAB* a) {
if (a == NULL)
return 0;
return cantDatos(a->izq) + cantDatos(a->der) + 1;
}
unsigned int FrameworkA1::cantDatos(NodoAG* a) {
if (a == NULL)
return 0;
return cantDatos(a->ph) + cantDatos(a->sh) + 1;
}
unsigned int FrameworkA1::altura(NodoAB* a) {
if (a == NULL)
return 0;
return max(altura(a->izq), altura(a->der)) + 1;
}
void FrameworkA1::destruir(char** vec, int largo){
if(vec!=NULL){
for(int i=0; i < largo; i++){
delete [] vec[i];
}
delete vec;
}
}
void FrameworkA1::destruir(int** mat, int columnas){
if(mat!=NULL){
for(int i=0; i < columnas; i++){
delete [] mat[i];
}
delete mat;
}else
cout<<"Matriz Vacia!"<<endl;
}
void FrameworkA1::destruir(int* vec) {
if(vec!=NULL){
delete vec;
}
}
void FrameworkA1::destruir(NodoLista *&l) {
while (l!=NULL) {
NodoLista *aux = l;
l = l->sig;
delete aux;
l = NULL;
}
}
void destruir(NodoListaAux *&l) {
while (l!=NULL) {
NodoListaAux *aux = l;
l = l->sig;
delete aux;
l = NULL;
}
}
void FrameworkA1::destruir(NodoAB *&a) {
while (a!=NULL) {
FrameworkA1::destruir(a->izq);
FrameworkA1::destruir(a->der);
delete a;
a = NULL;
}
}
void FrameworkA1::destruir(NodoAG *&a) {
while (a!=NULL) {
FrameworkA1::destruir(a->ph);
FrameworkA1::destruir(a->sh);
delete a;
a = NULL;
}
}
bool FrameworkA1::sonIguales(const char* resultado, const char* esperado){
if(resultado==NULL && esperado==NULL)
return true;
if(resultado==NULL || esperado==NULL)
return false;
return strcmp(resultado, esperado) == 0;
}
bool FrameworkA1::sonIguales(int* resultado, int* esperado, int largo){
if(resultado==NULL && esperado==NULL)
return true;
if(resultado==NULL || esperado==NULL)
return false;
for(int i=0; i < largo; i++){
if (resultado[i]!=esperado[i])
return false;
}
return true;
}
bool FrameworkA1::sonIguales(int** resultado, int** esperado,int columnas,int filas){
if(resultado==NULL && esperado==NULL)
return true;
if(resultado==NULL || esperado==NULL)
return false;
for(int f=0; f < filas; f++){
for(int c=0; c < columnas; c++){
if (resultado[c][f]!=esperado[c][f])
return false;
}
}
return true;
}
bool FrameworkA1::sonIguales(char** resultado, char** esperado, int cantStr){
if(resultado==NULL && esperado==NULL)
return true;
if(resultado==NULL || esperado==NULL)
return false;
for(int f=0; f < cantStr; f++){
if(strcmp(resultado[f], esperado[f]) != 0)
return false;
}
return true;
}
bool FrameworkA1::sonIguales(char** resultado, char** esperado, int columnas, int filas) {
if(resultado==NULL && esperado==NULL)
return true;
if(resultado==NULL || esperado==NULL)
return false;
for(int f=0; f < filas; f++){
for(int c=0; c < columnas; c++){
if (resultado[c][f]!=esperado[c][f])
return false;
}
}
return true;
}
bool FrameworkA1::sonIgualesDatosForma(NodoLista *l1, NodoLista *l2) {
if (l1 == NULL && l2 == NULL)
return true;
if (l1 == NULL || l2 == NULL)
return false;
if (l1->dato != l2->dato)
return false;
return sonIgualesDatosForma(l1->sig, l2->sig);
}
bool FrameworkA1::sonIgualesDatos(NodoLista *l1, NodoLista *l2) {
int largo1, largo2;
int *v1 = listaAVectorOrdenado(l1, largo1);
int *v2 = listaAVectorOrdenado(l2, largo2);
bool ret;
if (largo1 != largo2)
ret = false;
else
ret = sonIguales(v1, v2, largo1);
delete [] v1;
delete [] v2;
return ret;
}
bool FrameworkA1::sonIgualesDatosForma(NodoAB *a1,NodoAB *a2) {
if (a1 == NULL && a2 == NULL)
return true;
if (a1 == NULL || a2 == NULL)
return false;
if (a1->dato != a2->dato)
return false;
return sonIgualesDatosForma(a1->izq, a2->izq) && sonIgualesDatosForma(a1->der, a2->der);
}
bool FrameworkA1::sonIgualesDatos(NodoAB *a1, NodoAB *a2) {
int largo1, largo2;
int *v1 = abAVectorOrdenado(a1, largo1);
int *v2 = abAVectorOrdenado(a2, largo2);
bool ret;
if (largo1 != largo2)
ret = false;
else
ret = sonIguales(v1, v2, largo1);
delete [] v1;
delete [] v2;
return ret;
}
bool FrameworkA1::sonIgualesDatosForma(NodoAG *a1,NodoAG *a2) {
if (a1 == NULL && a2 == NULL)
return true;
if (a1 == NULL || a2 == NULL)
return false;
if (a1->dato != a2->dato)
return false;
return sonIgualesDatosForma(a1->ph, a2->ph) && sonIgualesDatosForma(a1->sh, a2->sh);
}
bool FrameworkA1::sonIgualesDatos(NodoAG *a1, NodoAG *a2) {
int largo1, largo2;
int *v1 = agAVectorOrdenado(a1, largo1);
int *v2 = agAVectorOrdenado(a2, largo2);
bool ret;
if (largo1 != largo2)
ret = false;
else
ret = sonIguales(v1, v2, largo1);
delete [] v1;
delete [] v2;
return ret;
}
bool FrameworkA1::compartenMemoria(char** vec1, int largoVec1, char** vec2, int largoVec2) {
if (vec1 == NULL || vec2 == NULL)
return false;
for(int i1=0; i1<largoVec1; i1++) {
for(int i2=0; i2<largoVec2; i2++) {
if (vec1[i1] == vec2[i2]) {
return true;
}
}
}
return false;
}
bool FrameworkA1::compartenMemoria(NodoLista *l1, NodoLista *l2) {
NodoLista *l1aux = l1;
NodoLista *l2aux = l2;
while (l1aux != NULL) {
l2aux = l2;
while (l2aux != NULL) {
if (l1aux == l2aux) return true;
l2aux = l2aux->sig;
}
l1aux = l1aux->sig;
}
return false;
}
bool FrameworkA1::compartenMemoria(int *vec1, int *vec2, int largoVec1, int largoVec2) {
if (vec1 == NULL || vec2 == NULL)
{
return false;
}
int contador1 = 0;
int contador2 = 0;
while (contador1 < largoVec1)
{
contador2 = 0;
while (contador2 < largoVec2)
{
if (&vec1[contador1] == &vec2[contador2]) return true;
contador2++;
}
contador1++;
}
return false;
}
void abAVectorPunteros(NodoAB *a1, NodoAB **vec, unsigned int &pos) {
if (a1 != NULL) {
vec[pos++] = a1;
abAVectorPunteros(a1->izq, vec, pos);
abAVectorPunteros(a1->der, vec, pos);
}
}
void agAVectorPunteros(NodoAG *a1, NodoAG **vec, unsigned int &pos) {
if (a1 != NULL) {
vec[pos++] = a1;
agAVectorPunteros(a1->ph, vec, pos);
agAVectorPunteros(a1->sh, vec, pos);
}
}
bool FrameworkA1::compartenMemoria(NodoAB *a1, NodoAB *a2) {
unsigned int pos1 = 0, pos2 = 0;
unsigned int cant1 = cantDatos(a1);
unsigned int cant2 = cantDatos(a2);
NodoAB **vec1 = new NodoAB *[cant1];
NodoAB **vec2 = new NodoAB *[cant2];
abAVectorPunteros(a1, vec1, pos1);
abAVectorPunteros(a2, vec2, pos2);
for (unsigned int i1=0; i1<cant1; i1++) {
for (unsigned int i2=0; i2<cant2; i2++) {
if (vec1[i1] == vec2[i2]) return true;
}
}
return false;
}
bool FrameworkA1::compartenMemoria(NodoAG *a1, NodoAG *a2) {
unsigned int pos1 = 0, pos2 = 0;
unsigned int cant1 = cantDatos(a1);
unsigned int cant2 = cantDatos(a2);
NodoAG **vec1 = new NodoAG *[cant1];
NodoAG **vec2 = new NodoAG *[cant2];
agAVectorPunteros(a1, vec1, pos1);
agAVectorPunteros(a2, vec2, pos2);
for (unsigned int i1=0; i1<cant1; i1++) {
for (unsigned int i2=0; i2<cant2; i2++) {
if (vec1[i1] == vec2[i2]) return true;
}
}
return false;
}
// Retorna el maximo de un AB no vacio
int FrameworkA1::maxAB(NodoAB *a)
{
if (a->izq == NULL && a->der == NULL)
return a->dato;
if (a->izq == NULL)
return max(maxAB(a->der), a->dato);
if (a->der == NULL)
return max(maxAB(a->izq), a->dato);
int maxIzq2 = max(maxAB(a->izq), a->dato);
int maxDer2 = max(maxAB(a->der), a->dato);
return max(maxIzq2, maxDer2);
}
// Retorna el minimo de un AB no vacio
int FrameworkA1::minAB(NodoAB *a)
{
if (a->izq == NULL && a->der == NULL)
return a->dato;
if (a->izq == NULL)
return min(minAB(a->der), a->dato);
if (a->der == NULL)
return min(minAB(a->izq), a->dato);
int minIzq2 = min(minAB(a->izq), a->dato);
int minDer2 = min(minAB(a->der), a->dato);
return min(minIzq2, minDer2);
}
bool FrameworkA1::esABB(NodoAB *a)
{
if (a == NULL)
return true;
if (a->izq != NULL && maxAB(a->izq) > a->dato)
return false;
if (a->der != NULL && minAB(a->der) < a->dato)
return false;
return esABB(a->izq) && esABB(a->der);
}
int *FrameworkA1::parsearVectorInt(char *stringDatos, int &largo) {
NodoLista *l = parsearLista(stringDatos, largo);
largo = cantDatos(l);
if (largo == 0)
return NULL;
int *ret = new int[largo];
NodoLista *aux = l;
for (int i=0; i<largo; i++) {
ret[i] = aux->dato;
aux = aux->sig;
}
return ret;
}
char **FrameworkA1::parsearVectorStrings(char *stringDatos, int &largo) {
unsigned int largoStr = strlen(stringDatos);
char *stringDatosC = FrameworkA1::copioString(stringDatos);
int cant = 0;
for(unsigned int i=0; i<largoStr; i++) {
if (stringDatosC[i] == '\'') {
cant++;
for(i++; i<largoStr; i++) {
if (stringDatosC[i] == '\'') {
break;
}
}
}
}
largo = cant;
if (largo == 0)
return NULL;
char** ret = new char*[largo];
int pos = 0;
for(unsigned int i=0; i<largoStr; i++) {
if (stringDatosC[i] == '\'') {
char *ini = &stringDatosC[i+1];
for(i++; i<largoStr; i++) {
if (stringDatosC[i] == '\'') {
stringDatosC[i] = '\0';
ret[pos++] = FrameworkA1::copioString(ini);
break;
}
}
}