-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheap.c
210 lines (166 loc) · 5.79 KB
/
heap.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
209
210
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <stddef.h>
#include <string.h>
#include "heap.h"
#define CAP_INIC 50ul
#define FACTOR_NVA_CAP 2ul
#define FACTOR_CARGA_MINIMA 2
// Funcion auxiliar de swap. Recibe punteros (llamar con &)
bool aux_swap_generico(void *x, void *y){
void *aux = malloc(sizeof(void *));
if (aux == NULL) return false;
memcpy(aux, x, sizeof(void *));
memcpy(x, y, sizeof(void *));
memcpy(y, aux, sizeof(void *));
free(aux);
return true;
}
// STRUCTS
typedef struct heap{
void **datos;
size_t cant;
size_t tam;
cmp_func_t cmp;
} heap_t;
// PRIMITIVAS HEAP
heap_t *heap_crear(cmp_func_t cmp){
heap_t *nuevo_heap = malloc(sizeof(heap_t));
if (nuevo_heap == NULL) return NULL;
nuevo_heap->cant = 0;
nuevo_heap->cmp = cmp;
nuevo_heap->tam = CAP_INIC;
nuevo_heap->datos = malloc(nuevo_heap->tam * sizeof(void *));
if (nuevo_heap->datos == NULL) return NULL;
return nuevo_heap;
}
// Función auxiliar que retorna true si el primer valor es mayor que el segundo.
bool aux_es_mayor(void *arreglo[], size_t n, size_t posicion1, size_t posicion2, cmp_func_t cmp){
if (posicion1 == posicion2) return true;
if (posicion1 >= n || posicion2 >= n){
return false;
}
void *elem_pos1 = arreglo[posicion1];
void *elem_pos2 = arreglo[posicion2];
int resultado = cmp(elem_pos1, elem_pos2);
return (resultado > 0);
}
// Funcion auxiliar heap_encolar
// Esta funcion presupone que se sabe que es correcto hacer un unheap
void aux_upheap(void *arreglo[], size_t n, size_t pos_padre, size_t pos_inferior, cmp_func_t cmp){
aux_swap_generico(&arreglo[pos_padre], &arreglo[pos_inferior]);
if (pos_padre == 0){
return;
}
pos_inferior = pos_padre;
pos_padre = (pos_padre - 1) / 2;
if (!aux_es_mayor(arreglo, n, pos_padre, pos_inferior, cmp)){
aux_upheap(arreglo, n, pos_padre, pos_inferior, cmp);
}
}
void aux_downheap(void *arreglo[], size_t n, size_t pos_padre, cmp_func_t cmp){
size_t pos_hijo_izq = (2 * pos_padre) + 1;
size_t pos_hijo_der = (2 * pos_padre) + 2;
// Revisar que ambas las posiciones están en el arreglo
if (pos_hijo_izq >= n) return;
// Revisar si DER está en el arreglo
if (pos_hijo_der >= n){
// Der no está. Probar swap solo con IZQ
if (aux_es_mayor(arreglo, n, pos_hijo_izq, pos_padre, cmp)){
aux_swap_generico(&arreglo[pos_padre], &arreglo[pos_hijo_izq]);
pos_padre = pos_hijo_izq;
}
}
// Tanto IZQ como DER son swaps posibles
size_t pos_mayor_hijo = pos_hijo_izq;
if (aux_es_mayor(arreglo, n, pos_hijo_der, pos_hijo_izq, cmp)){
pos_mayor_hijo = pos_hijo_der; // Si se cumple este if el mayor hijo es el derecho
}
if (aux_es_mayor(arreglo, n, pos_mayor_hijo, pos_padre, cmp)){
aux_swap_generico(&arreglo[pos_padre], &arreglo[pos_mayor_hijo]);
pos_padre = pos_mayor_hijo;
} else
return;
aux_downheap(arreglo, n, pos_padre, cmp);
}
// https://www.youtube.com/watch?v=gc4MdD10w7w&t=6s
// Funcion auxiliar para heapify
void heapify(void *arreglo[], size_t cant, cmp_func_t cmp){
for (size_t i = cant - 1; i >= 0 && i < cant; i--){
aux_downheap(arreglo, cant, i, cmp);
}
}
void heap_sort(void* arr[], size_t cant, cmp_func_t cmp){
heapify(arr, cant, cmp);
for (int i = 1; i < 7; i++){
aux_swap_generico(&arr[0], &arr[cant-i]);
aux_downheap(arr, cant-i, 0, cmp);
}
}
// Función auxiliar de heap_guardar y heap_borrar
void aux_redimensionar(heap_t *heap, size_t nueva_cap){
if (nueva_cap < CAP_INIC) nueva_cap = CAP_INIC;
void **nuevo_arreglo = realloc(heap->datos, nueva_cap * sizeof(void *));
if (nuevo_arreglo == NULL) return;
heap->datos = nuevo_arreglo;
heap->tam = nueva_cap;
}
heap_t *heap_crear_arr(void *arreglo[], size_t n, cmp_func_t cmp){
heap_t *nuevo_heap = malloc(sizeof(heap_t));
if (nuevo_heap == NULL) return NULL;
nuevo_heap->cmp = cmp;
nuevo_heap->tam = CAP_INIC;
nuevo_heap->datos = malloc(nuevo_heap->tam * sizeof(void *));
if (nuevo_heap->datos == NULL) return NULL;
for (size_t i = 0; i < n; i++){
nuevo_heap->datos[i] = arreglo[i];
}
nuevo_heap->cant = n;
heapify(nuevo_heap->datos, n, cmp);
return nuevo_heap;
}
bool heap_esta_vacio(const heap_t *heap){
return heap->cant == 0;
}
size_t heap_cantidad(const heap_t *heap){
size_t valor = heap->cant;
return valor;
}
bool heap_encolar(heap_t *heap, void *elem){
heap->datos[heap->cant] = elem;
heap->cant++;
if (heap->cant == 1) return true;
size_t pos_nuevo = heap->cant - 1;
size_t pos_padre = (pos_nuevo - 1) / 2;
if (!aux_es_mayor(heap->datos, heap->cant, pos_padre, pos_nuevo, heap->cmp)){
aux_upheap(heap->datos, heap->cant, pos_padre, pos_nuevo, heap->cmp);
}
if (heap->cant == heap->tam) aux_redimensionar(heap, heap->tam * FACTOR_NVA_CAP);
return true;
}
void *heap_desencolar(heap_t *heap){
if (heap_esta_vacio(heap)) return NULL;
void *dato = heap->datos[0];
heap->cant--;
if (heap->cant == 0) return dato;
aux_swap_generico(&heap->datos[0], &heap->datos[heap->cant]);
aux_downheap(heap->datos, heap->cant, 0, heap->cmp);
if (heap->cant < heap->tam / FACTOR_CARGA_MINIMA && heap->tam > CAP_INIC)
aux_redimensionar(heap, heap->tam / FACTOR_NVA_CAP);
return dato;
}
void *heap_ver_max(const heap_t *heap){
if (heap_esta_vacio(heap)) return NULL;
return heap->datos[0];
}
void heap_destruir(heap_t *heap, void (*destruir_elemento)(void *e)){
if (destruir_elemento != NULL){
for (size_t i = 0; i < heap->cant; i++){
destruir_elemento(heap->datos[i]);
}
}
free(heap->datos);
free(heap);
}
// FIN PRIMITIVAS HEAP