-
Notifications
You must be signed in to change notification settings - Fork 0
/
heap.c
executable file
·157 lines (141 loc) · 4.15 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
#include "heap.h"
#define EXITO 0
#define ERROR -1
struct heap{
void** vector;
size_t cantidad;
size_t capacidad;
bool es_minimal;
comparador_t comparador;
destructor_t destructor;
};
////////////// Func AUX /////////
/*
* Retorna el indice del padre del nodo en indice_hijo
*/
size_t indice_padre(size_t indice_hijo){
return (indice_hijo-1)/2;
}
/*
* Swapea las posiciones p1 y p2 del vector
*/
void swap(void** vector, size_t p1, size_t p2){
void* aux =vector[p1];
vector[p1]=vector[p2];
vector[p2]=aux;
}
/*
* Sube el nodo en la posicion indice hasta que cumpla la condicion de heap
*/
void sift_up(heap_t* heap, size_t indice){
if(indice==0)
return;
size_t pos_padre=indice_padre(indice);
if(heap->es_minimal && heap->comparador(heap->vector[indice],heap->vector[pos_padre])<0){
swap(heap->vector, indice, pos_padre);
sift_up(heap, pos_padre);
}else if(!heap->es_minimal && heap->comparador(heap->vector[indice], heap->vector[pos_padre]) > 0){
swap(heap->vector, indice, pos_padre);
sift_up(heap, pos_padre);
}
}
/*
* Retorna el indice del hijo izquierdo del nodo del indice padre
*/
size_t indice_hijo_izquierdo(size_t indice_padre){
return 2*indice_padre+1;
}
/*
* Retorna: -El indice del hijo MAYOR si es un heap MAXIMAL
* -El indice del hijo MENOR si es un heap MINIMAL
*/
size_t busca_indice_candidato(heap_t* heap, size_t ind_hijo1, size_t ind_hijo2){
if(heap->es_minimal){
if(heap->comparador(heap->vector[ind_hijo1], heap->vector[ind_hijo2]) < 0)
return ind_hijo1;
return ind_hijo2;
}else{
if(heap->comparador(heap->vector[ind_hijo1], heap->vector[ind_hijo2]) > 0)
return ind_hijo1;
return ind_hijo2;
}
}
/*
* Baja el nodo en la posicion indice hasta que cumpla la condicion de heap
*/
void sift_down(heap_t* heap, size_t indice){
size_t p_hijo_izq=indice_hijo_izquierdo(indice);
size_t p_hijo_der = p_hijo_izq+1;
if(p_hijo_izq<heap->cantidad){
size_t indice_candidato=p_hijo_izq;
if(p_hijo_der<heap->cantidad){
indice_candidato=busca_indice_candidato(heap,p_hijo_izq, p_hijo_der);
}
if(heap->es_minimal && heap->comparador(heap->vector[indice_candidato], heap->vector[indice]) < 0){
swap(heap->vector, indice_candidato, indice);
sift_down(heap, indice_candidato);
}else if(!heap->es_minimal && heap->comparador(heap->vector[indice_candidato], heap->vector[indice]) > 0){
swap(heap->vector, indice_candidato, indice);
sift_down(heap, indice_candidato);
}
}
}
///////////// PRINCIPALES //////////////////
heap_t *heap_crear(comparador_t comparador, destructor_t destructor, int tipo_heap){
if(!comparador || !(tipo_heap == MINIMAL || tipo_heap == MAXIMAL))
return NULL;
heap_t *heap = calloc(1, sizeof(heap_t));
if(!heap)
return NULL;
heap->vector=calloc(1,sizeof(void*));
if(!heap->vector){
free(heap);
return NULL;
}
if(tipo_heap==MINIMAL)
heap->es_minimal=true;
heap->capacidad=1;
heap->comparador=comparador;
heap->destructor=destructor;
return heap;
}
int heap_insertar(heap_t* heap, void* elemento){
if(!heap || !elemento)
return ERROR;
if(heap->cantidad>=heap->capacidad){
size_t nueva_capacidad=heap->capacidad*2 + 1;
void** v_aux=realloc(heap->vector, nueva_capacidad * sizeof(void*));
if(!v_aux)
return ERROR;
heap->vector=v_aux;
heap->capacidad=nueva_capacidad;
}
heap->vector[heap->cantidad]=elemento;
sift_up(heap, (heap->cantidad));
(heap->cantidad)++;
return EXITO;
}
void* heap_raiz(heap_t* heap){
return heap? heap->vector[0] : NULL;
}
int heap_extraer_raiz(heap_t* heap){
if(!heap)
return ERROR;
if(heap_cantidad(heap) > 0){
swap(heap->vector, 0, (heap->cantidad)-1);
if(heap->destructor)
heap->destructor(heap->vector[heap->cantidad-1]);
(heap->cantidad)--;
sift_down(heap, 0);
}
return EXITO;
}
size_t heap_cantidad(heap_t* heap){
return heap? heap->cantidad : 0;
}
void heap_destruir(heap_t *heap){
if(!heap)
return;
free(heap->vector);
free(heap);
}