forked from fragglet/c-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary-heap.h
151 lines (118 loc) · 3.98 KB
/
binary-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
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
/*
Copyright (c) 2005-2008, Simon Howard
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/**
* @file binary-heap.h
*
* @brief Binary heap.
*
* A binary heap is a heap data structure implemented using a
* binary tree. In a heap, values are ordered by priority.
*
* To create a binary heap, use @ref binary_heap_new. To destroy a
* binary heap, use @ref binary_heap_free.
*
* To insert a value into a binary heap, use @ref binary_heap_insert.
*
* To remove the first value from a binary heap, use @ref binary_heap_pop.
*
*/
#ifndef ALGORITHM_BINARY_HEAP_H
#define ALGORITHM_BINARY_HEAP_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* Heap type. If a heap is a min heap (@ref BINARY_HEAP_TYPE_MIN), the
* values with the lowest priority are stored at the top of the heap and
* will be the first returned. If a heap is a max heap
* (@ref BINARY_HEAP_TYPE_MAX), the values with the greatest priority are
* stored at the top of the heap.
*/
typedef enum {
/** A minimum heap. */
BINARY_HEAP_TYPE_MIN,
/** A maximum heap. */
BINARY_HEAP_TYPE_MAX
} BinaryHeapType;
/**
* A value stored in a @ref BinaryHeap.
*/
typedef void *BinaryHeapValue;
/**
* A null @ref BinaryHeapValue.
*/
#define BINARY_HEAP_NULL ((void *) 0)
/**
* Type of function used to compare values in a binary heap.
*
* @param value1 The first value.
* @param value2 The second value.
* @return A negative number if value1 is less than value2,
* a positive number if value1 is greater than value2,
* zero if the two are equal.
*/
typedef int (*BinaryHeapCompareFunc)(BinaryHeapValue value1,
BinaryHeapValue value2);
/**
* A binary heap data structure.
*/
typedef struct _BinaryHeap BinaryHeap;
/**
* Create a new @ref BinaryHeap.
*
* @param heap_type The type of heap: min heap or max heap.
* @param compare_func Pointer to a function used to compare the priority
* of values in the heap.
* @return A new binary heap, or NULL if it was not possible
* to allocate the memory.
*/
BinaryHeap *binary_heap_new(BinaryHeapType heap_type,
BinaryHeapCompareFunc compare_func);
/**
* Destroy a binary heap.
*
* @param heap The heap to destroy.
*/
void binary_heap_free(BinaryHeap *heap);
/**
* Insert a value into a binary heap.
*
* @param heap The heap to insert into.
* @param value The value to insert.
* @return Non-zero if the entry was added, or zero if it
* was not possible to allocate memory for the new
* entry.
*/
int binary_heap_insert(BinaryHeap *heap, BinaryHeapValue value);
/**
* Remove the first value from a binary heap.
*
* @param heap The heap.
* @return The first value in the heap, or
* @ref BINARY_HEAP_NULL if the heap is empty.
*/
BinaryHeapValue binary_heap_pop(BinaryHeap *heap);
/**
* Find the number of values stored in a binary heap.
*
* @param heap The heap.
* @return The number of values in the heap.
*/
unsigned int binary_heap_num_entries(BinaryHeap *heap);
#ifdef __cplusplus
}
#endif
#endif /* #ifndef ALGORITHM_BINARY_HEAP_H */