-
Notifications
You must be signed in to change notification settings - Fork 0
/
pruebas_heap_alumno.c
208 lines (160 loc) · 6.51 KB
/
pruebas_heap_alumno.c
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
#ifndef _HEAP_H
#define _HEAP_H
#define VOLUMEN 1000
#define MAX_RAND 10
#define TAM 10
#define _POSIX_C_SOURCE 200809L
#include "heap.h"
#include "testing.h"
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
/*
gcc -g -std=c99 -Wall -Wconversion -Wno-sign-conversion -Werror -o pruebas *.c
valgrind --leak-check=full --track-origins=yes --show-reachable=yes ./pruebas
*/
/**************************
* Funciones Auxiliares
* ***********************/
/* Wrapper de strcmp que recibe dos const void*/
int str_cmp(const void* a, const void* b){
const char* str_a = a;
const char* str_b = b;
return strcmp(str_a, str_b);
}
int intcmp(const void* a, const void* b){
if (*(int*)a > *(int*)b) return 1;
else if (*(int*)a < *(int*)b) return -1;
return 0;
}
void destruir_vector(void** vector, size_t n){
for (size_t i = 0; i < n; i++){
free(vector[i]);
}
free(vector);
}
/***************************
* Funciones de Pruebas
* *************************/
static void pruebas_heap_vacio(){
printf("\n**PRUEBAS HEAP VACÍO**\n");
heap_t* heap = heap_crear(str_cmp);
if (!heap) return;
print_test("heap_ver_max devuelve NULL para un heap vacío", heap_ver_max(heap) ==NULL);
print_test("heap_desencolar devuelve NULL para un heap vacío", heap_desencolar(heap) == NULL);
print_test("heap_esta_vacio devuelve true para un heap vacío", heap_esta_vacio(heap));
heap_destruir(heap,NULL);
}
static void prueba_heap_encolar_desencolar(){
printf("\n**PRUEBAS ENCOLAR Y DESENCOLAR**\n");
heap_t* heap = heap_crear(str_cmp);
char dato1[4] = "gato";
char dato2[5] = "perro";
char dato3[4] = "vaca";
char dato4[6] = "iguana";
print_test("Prueba heap no se puede encolar NULL", !heap_encolar(heap, NULL));
//Inserta 1 dato y luego lo borra
print_test("Prueba heap encolar dato1", heap_encolar(heap, &dato1));
print_test("Prueba heap la cantidad de elementos es 1", heap_cantidad(heap) == 1);
print_test("Prueba heap ver_max es dato1", heap_ver_max(heap) == dato1);
print_test("Prueba heap borrar es dato1", heap_desencolar(heap) == dato1);
print_test("Prueba heap la cantidad de elementos es 0", heap_cantidad(heap) == 0);
printf("\n");
//Inserta otros 3 datos y no los borra (se destruyen con el heap)
print_test("Prueba heap encolar dato1", heap_encolar(heap, &dato1)); // gato
print_test("Prueba heap la cantidad de elementos es 1", heap_cantidad(heap) == 1);
print_test("Prueba heap ver_max es dato1", heap_ver_max(heap) == dato1);
print_test("Prueba heap encolar dato2", heap_encolar(heap, &dato2)); // perro
print_test("Prueba heap la cantidad de elementos es 2", heap_cantidad(heap) == 2);
print_test("Prueba heap ver_max es dato2", heap_ver_max(heap) == dato2);
print_test("Prueba heap encolar dato3", heap_encolar(heap, &dato3)); // vaca
print_test("Prueba heap la cantidad de elementos es 3", heap_cantidad(heap) == 3);
print_test("Prueba heap ver_max es dato3", heap_ver_max(heap) == dato3);
print_test("Prueba heap encolar dato3", heap_encolar(heap, &dato4)); // iguana
print_test("Prueba heap la cantidad de elementos es 4", heap_cantidad(heap) == 4);
print_test("Prueba heap ver_max sigue siendo dato3", heap_ver_max(heap) == dato3);
print_test("Prueba heap borrar es dato3", heap_desencolar(heap) == dato3); // desencola vaca
print_test("Prueba heap ver_max es dato2", heap_ver_max(heap) == dato2); // max = perro
print_test("Prueba heap borrar es dato2", heap_desencolar(heap) == dato2); // desencola perro
print_test("Prueba heap ver_max es dato4", heap_ver_max(heap) == dato4); // max = iguana
print_test("Prueba heap borrar es dato4", heap_desencolar(heap) == dato4); // desencola iguana
print_test("Prueba heap ver_max es dato1", heap_ver_max(heap) == dato1); // max = gato
print_test("Prueba heap borrar es dato1", heap_desencolar(heap) == dato1); // desencola gato
print_test("Prueba heap esta_vacio", heap_esta_vacio(heap)); // está vacío
heap_destruir(heap,NULL);
}
static void pruebas_heap_volumen(){
printf("\n**PRUEBAS VOLUMEN**\n");
heap_t* heap = heap_crear(intcmp);
void** vector = malloc(sizeof(void*)*VOLUMEN);
bool ok = true;
for (int i = VOLUMEN-1; i >= 0 && ok; i--){
int* p = malloc(sizeof(int));
*p = i/2;
vector[i] = p;
ok = heap_encolar(heap,p);
}
print_test("Prueba heap encolar muchos elementos", ok);
print_test("Prueba heap la cantidad de elementos es correcta", heap_cantidad(heap) == VOLUMEN);
for (int j = VOLUMEN-1; j >= 0 && ok; j--){
int* q = heap_desencolar(heap);
ok = (intcmp(q,vector[j]) == 0);
}
print_test("Prueba heap desencolar muchos elementos", ok);
print_test("Prueba heap la cantidad de elementos es 0", heap_cantidad(heap) == 0);
heap_destruir(heap,NULL);
destruir_vector(vector,VOLUMEN);
}
static void pruebas_heapsort(){
printf("\n**PRUEBAS HEAPSORT**\n");
void** vector = malloc(sizeof(void*)*TAM);
for (int i = 0; i < TAM; i++){
int* p = malloc(sizeof(int));
*p = rand()%TAM;
vector[i] = p;
}
heap_sort(vector,TAM,intcmp);
int actual = *(int*)vector[0];
bool ok = true;
for (int j = 1; j < TAM; j++){
int a = *(int*)vector[j];
if (a < actual) ok = false;
actual = *(int*)vector[j];
}
print_test("Prueba heapsort ordena un arreglo", ok);
destruir_vector(vector,TAM);
}
static void pruebas_heap_arreglo(){
printf("\n**PRUEBAS HEAP ARREGLO**\n");
void** vector = malloc(sizeof(void*)*TAM);
for (int i = 0; i < TAM; i++){
int* p = malloc(sizeof(int));
*p = rand()%TAM;
vector[i] = p;
}
heap_t* heap_a = heap_crear_arr(vector,TAM,intcmp);
print_test("Prueba heap creado con un arreglo, tiene el tamaño correcto", heap_cantidad(heap_a) == TAM);
heap_t* heap_b = heap_crear(intcmp);
for (int i = 0; i < TAM; i++){
heap_encolar(heap_b,vector[i]);
}
bool ok = true;
while (!(heap_esta_vacio(heap_a) || heap_esta_vacio(heap_b))){
ok = heap_desencolar(heap_a) == heap_desencolar(heap_b);
}
print_test("Prueba heap creado con un arreglo, se comporta como un heap", ok);
heap_destruir(heap_a,NULL);
heap_destruir(heap_b,NULL);
destruir_vector(vector,TAM);
}
void pruebas_heap_alumno(){
srand((unsigned int)time(NULL));
pruebas_heap_vacio();
prueba_heap_encolar_desencolar();
pruebas_heap_volumen();
pruebas_heapsort();
pruebas_heap_arreglo();
}
#endif