-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheap.c
180 lines (138 loc) · 3.7 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
#include "heap.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stddef.h>
#define COEF_CANT_MINIMA 4
#define COEF_REDIM 2
const size_t TAM_DEFAULT = 20;
struct heap{
void** arreglo;
size_t capacidad;
size_t cantidad;
cmp_func_t cmp;
};
bool heap_redimensionar(heap_t* heap, size_t tam_nuevo){
void* arreglo_nuevo = realloc(heap->arreglo,tam_nuevo * sizeof(void*));
if(tam_nuevo > 0 && ! arreglo_nuevo) return false;
heap->arreglo = arreglo_nuevo;
heap->capacidad = tam_nuevo;
return true;
}
void swap(void* arreglo[],size_t pos1,size_t pos2){
void* aux = arreglo[pos1];
arreglo[pos1]=arreglo[pos2];
arreglo[pos2]=aux;
}
void upheap(heap_t* heap,size_t pos){
if(pos==0) return;
size_t padre = (pos-1)/2;
if(heap->cmp(heap->arreglo[pos],heap->arreglo[padre])<0){
return;
}
swap(heap->arreglo,pos,padre);
upheap(heap,padre);
}
void downheap(void* arr[],size_t pos,size_t cantidad,cmp_func_t cmp){
if(pos>cantidad-1) return;
size_t izq = (pos*2)+1;
size_t der = izq+1;
size_t mayor = pos;
if((izq<cantidad-1) && cmp(arr[izq],arr[pos])>0) mayor = izq;
if((der<cantidad-1) && cmp(arr[der],arr[mayor])>0) mayor = der;
if(mayor!=pos){
swap(arr,pos,mayor);
downheap(arr,mayor,cantidad,cmp);
}
}
void heapify(void* arr[],size_t cantidad,cmp_func_t cmp){
for(size_t i=cantidad-1;i>0;i--){
downheap(arr,i,cantidad,cmp);
}
}
void heap_sort(void *elementos[], size_t cant, cmp_func_t cmp){
heapify(elementos,cant,cmp);
for(size_t i=cant-1;i>0;i--){
swap(elementos,0,i);
cant--;
downheap(elementos,0,cant,cmp);
}
}
heap_t *heap_crear(cmp_func_t cmp){
heap_t* heap = malloc(sizeof(heap_t));
if(!heap) return NULL;
heap->arreglo = malloc(sizeof(void*)*TAM_DEFAULT);
if(!heap->arreglo){
free(heap);
return NULL;
}
heap->cmp = cmp;
heap->capacidad = TAM_DEFAULT;
heap->cantidad = 0;
return heap;
}
heap_t *heap_crear_arr(void* arreglo[],size_t n,cmp_func_t cmp){
if(!arreglo || n==0) return NULL;
heap_t* heap = malloc(sizeof(heap_t));
if(!heap) return NULL;
heap->arreglo = malloc(sizeof(void*)*(n+TAM_DEFAULT));
if(!heap->arreglo){
free(heap);
return NULL;
}
heap->cmp = cmp;
heap->capacidad = n+TAM_DEFAULT;
heap->cantidad = n;
for(size_t i=0;i<n;i++){
heap->arreglo[i]=arreglo[i];
}
heapify(heap->arreglo,heap->cantidad,heap->cmp);
return heap;
}
void *heap_ver_max(const heap_t *heap){
if(heap_esta_vacio(heap)) return NULL;
return (heap->arreglo[0]);
}
bool heap_encolar(heap_t* heap,void* elem){
if(!elem) return false;
if (heap->cantidad == heap->capacidad){
if(!heap_redimensionar(heap,(heap->capacidad)*COEF_REDIM)) return false;
}
if(heap_esta_vacio(heap)) heap->arreglo[0]=elem;
else{
heap->arreglo[heap->cantidad]=elem;
upheap(heap,heap->cantidad);
}
heap->cantidad++;
return true;
}
void* heap_desencolar(heap_t* heap){
if(heap_esta_vacio(heap)) return NULL;
void* dato;
if(heap->cantidad==1){
dato = heap->arreglo[0];
}
else{
swap(heap->arreglo,0,heap->cantidad-1);
downheap(heap->arreglo,0,heap->cantidad,heap->cmp);
}
dato = heap->arreglo[heap->cantidad-1];
heap->cantidad --;
if(heap->cantidad < heap->capacidad/COEF_CANT_MINIMA){
heap_redimensionar(heap,heap->capacidad/COEF_REDIM);
}
return dato;
}
size_t heap_cantidad(const heap_t* heap){
return heap->cantidad;
}
bool heap_esta_vacio(const heap_t *heap){
return (heap_cantidad(heap)==0);
}
void heap_destruir(heap_t* heap,void destruir_elemento(void *e)){
for(size_t i=0;i<heap->capacidad;i++){
if(heap->arreglo[i] && destruir_elemento) destruir_elemento(heap->arreglo[i]);
}
free(heap->arreglo);
free(heap);
}