Newer
Older
*/
#ifndef HEAP_H
# define HEAP_H
# ifdef __cplusplus
extern "C" {
# endif
typedef struct heap_node heap_node_t;
typedef struct heap {
int32_t (*compare)(const void *key, const void *with);
void (*datum_delete)(void *);
void heap_init(heap_t *h,
int32_t (*compare)(const void *key, const void *with),
void (*datum_delete)(void *));
heap_node_t *heap_insert(heap_t *h, void *v);
void *heap_peek_min(heap_t *h);
void *heap_remove_min(heap_t *h);
int heap_combine(heap_t *h, heap_t *h1, heap_t *h2);
int heap_decrease_key(heap_t *h, heap_node_t *n, void *v);
int heap_decrease_key_no_replace(heap_t *h, heap_node_t *n);
# ifdef __cplusplus
}
# endif