-
Notifications
You must be signed in to change notification settings - Fork 0
/
heap.h
executable file
·58 lines (45 loc) · 1.26 KB
/
heap.h
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
#ifndef __HEAP_H__
#define __HEAP_H__
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#define MINIMAL 1
#define MAXIMAL 2
/*
* Compara los dos elementos.
* Retorno: <0 si el primero es menor, >0 si el primero es mayor, =0 si son iguales
*/
typedef int (*comparador_t)(void*, void*);
/*
* Libera la memoria reservada del elemento almacenado
*/
typedef void (*destructor_t)(void*);
typedef struct heap heap_t;
/*
* Crea e inicializa un heap en memoria dinamica
* El tipo de heap esta dada por las constantes MINIMAL Y MAXIMAL en este .h
*/
heap_t* heap_crear(comparador_t comparador, destructor_t destructor, int tipo_heap);
/*
* Inserta un elemento no NULO al heap
* Retorno: 0 Si se inserta bien, -1 si algo falla
*/
int heap_insertar(heap_t* heap, void* elemento);
/*
* Devuelve la raiz del heap (el menor o mayor segun sea el tipo)
*/
void* heap_raiz(heap_t* heap);
/*
* Extrae(remueve) la raiz del heap (el menor o mayor segun sea el tipo)
* Retorno: 0 Si se remueve bien, -1 si algo falla
*/
int heap_extraer_raiz(heap_t* heap);
/*
* Devuelve la cantidad de elementos almacenados en el heap
*/
size_t heap_cantidad(heap_t* heap);
/*
* Libera la memoria reservada por el heap
*/
void heap_destruir(heap_t* heap);
#endif /* __HEAP_H__ */