-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheap.c
159 lines (144 loc) · 4.28 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
#define _GNU_SOURCE
#include "heap.h"
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#define TAMANIO_INICIAL 15 // Particularmente este es nuestro tamanio
// inicial ya que corresponde con un hash de 4 niveles o filas
#define DISMINUIR false
#define EXPANDIR true
struct heap {
void **datos;
size_t cant;
size_t tam;
cmp_func_t cmp;
};
void swap(void **a, void **b) {
void *c = *a;
*a = *b;
*b = c;
}
void upheap(heap_t *heap, size_t pos) {
if (!pos) return;
size_t padre = (pos - 1) / 2;
if (heap->cmp(heap->datos[padre], heap->datos[pos]) < 0) {
swap(&heap->datos[padre], &heap->datos[pos]);
upheap(heap, padre);
}
}
void downheap(void **datos, size_t cant, size_t pos, cmp_func_t cmp) {
if (cant == 1 || pos >= cant / 2)
return; // SI ES UNA HOJA O HAY 1 ELEMENTO EN EL HEAP NO HAGO NADA
size_t padre = pos;
size_t izq = 2 * pos + 1;
size_t der = 2 * pos + 2;
if (izq < cant && cmp(datos[izq], datos[padre]) > 0) padre = izq;
if (der < cant && cmp(datos[der], datos[padre]) > 0) padre = der;
if (padre != pos) {
swap(&datos[padre], &datos[pos]);
downheap(datos, cant, padre, cmp);
}
}
bool heap_esta_vacio(const heap_t *heap) { return (heap) && (!heap->cant); }
heap_t *heap_crear(cmp_func_t cmp) {
if (!cmp) return NULL;
heap_t *heap = malloc(sizeof(heap_t));
if (!heap) return NULL;
heap->datos = malloc((heap->tam) * sizeof(void *));
if (!heap->datos) {
free(heap);
return NULL;
}
heap->cmp = cmp;
heap->tam = TAMANIO_INICIAL;
heap->cant = 0;
return heap;
}
void heap_destruir(heap_t *heap, void destruir_elemento(void *e)) {
if (!heap) return;
if (destruir_elemento) {
for (size_t pos = 0; pos < heap->cant; pos++) {
destruir_elemento(heap->datos[pos]);
}
}
free(heap->datos);
free(heap);
}
size_t heap_cantidad(const heap_t *heap) {
return (!heap || heap_esta_vacio(heap)) ? 0 : (heap->cant);
}
void *heap_ver_tope(const heap_t *heap) {
return (!heap || heap_esta_vacio(heap)) ? NULL : (heap->datos[0]);
}
bool redimensionar(heap_t *heap, bool ajuste) {
if (heap == NULL) return false;
if (ajuste == EXPANDIR) {
heap->tam = (heap->tam * 2) + 1;
} else {
heap->tam = heap->tam / 2;
}
void **data_aux = realloc(heap->datos, heap->tam * sizeof(void *));
if (data_aux == NULL) {
heap->tam = (ajuste == EXPANDIR) ? heap->tam = (heap->tam - 1) / 2
: heap->tam = heap->tam * 2;
return false;
}
heap->datos = data_aux;
if (ajuste == EXPANDIR) {
for (size_t i = heap->cant; i < heap->tam; i++) {
heap->datos[i] = NULL;
}
}
return true;
}
bool heap_encolar(heap_t *heap, void *elem) {
if (!heap || !elem) return false;
if (heap->cant == heap->tam) redimensionar(heap, EXPANDIR);
heap->datos[heap->cant] = elem;
heap->cant++;
upheap(heap, heap->cant - 1);
return true;
}
void *heap_desencolar(heap_t *heap) {
if (!heap || heap_esta_vacio(heap)) return NULL;
void *a_devolver = heap->datos[0];
heap->datos[0] = heap->datos[heap->cant - 1];
heap->cant--;
downheap(heap->datos, heap->cant, 0, heap->cmp);
if (heap->cant * 2 <= heap->tam && heap->cant >= TAMANIO_INICIAL)
redimensionar(heap, DISMINUIR);
return a_devolver;
}
heap_t *heap_crear_arr(void *arreglo[], size_t n,
cmp_func_t cmp) { // Cambiar por heapify
if (!arreglo || n < 1) return NULL;
heap_t *heap = heap_crear(cmp);
if (!heap) return NULL;
if (n > TAMANIO_INICIAL)
redimensionar(
heap,
EXPANDIR); // Redimensiono si tengo mas elementos que la capacidad
for (int i = 0; i < n; i++) {
heap->datos[i] = arreglo[i]; // Copio los elementos en el heap
}
for (int i = (int)n - 1; i > -1; i--) {
downheap(heap->datos, n, i, cmp); // Doy forma de Heap
}
heap->cant = n;
return heap;
}
void heap_sort(void *elementos[], size_t cant, cmp_func_t cmp) {
if (!elementos || cant <= 1 || cmp == NULL) return;
for (int i = (int)cant - 1; i > -1; i--) {
downheap(elementos, cant, i, cmp); // Doy forma de Heap
}
size_t segmento = cant;
for (size_t i = 0; i < cant; i++) {
swap(&elementos[0], &elementos[segmento - 1]);
downheap(elementos, segmento - 1, 0,
cmp); // downheap de la raiz para el nuevo segmento
segmento--;
}
return;
}