11 #include "cgds/types.h"
12 #include "cgds/Vector.h"
13 #include "cgds/safe_alloc.h"
16 * @brief Generic d-ary heap.
19 size_t dataSize
; ///< Size of a heap item in bytes.
20 OrderType hType
; ///< Type of heap: max first (MAX_T) or min first (MIN_T).
21 UInt arity
; ///< Arity of the underlying tree.
22 Vector
* array
; ///< Vector of ItemValue* (internal representation).
26 * @brief Return an allocated and initialized heap.
29 size_t dataSize
, ///< Size in bytes of a heap element.
30 OrderType hType
, ///< Type of heap: max first (MAX_T) or min first (MIN_T).
31 UInt arity
///< Arity of the underlying tree.
35 * @brief Return an allocated and initialized heap.
36 * @param type Type of a buffer item (int, char*, ...).
37 * @param hType Type of heap: max first (MAX_T) or min first (MIN_T).
38 * @param arity Arity of the underlying tree.
40 * Usage: Heap* heap_new(<Type> type, OrderType hType, UInt arity)
42 #define heap_new(type, hType, arity) \
43 _heap_new(sizeof(type), hType, arity)
46 * @brief Copy constructor (works well if items do not have allocated sub-pointers).
49 Heap
* heap
///< "this" pointer.
53 * @brief Check if the heap is empty.
56 Heap
* heap
///< "this" pointer.
60 * @brief Return the size of current heap.
63 Heap
* heap
///< "this" pointer.
67 * @brief "Bubble up" an item-value inserted somewhere in the tree in O(log(n)) operations.
70 Heap
* heap
, ///< "this" pointer.
71 UInt startIndex
///< Index to bubble up.
75 * @brief "Bubble down" an item-value inserted somewhere in the tree in O(log(n)) operations.
77 void _heap_bubble_down(
78 Heap
* heap
, ///< "this" pointer.
79 UInt startIndex
///< Index to bubble down.
83 * @brief Insert a pair (item,value) inside the heap.
86 Heap
* heap
, ///< "this" pointer.
87 void* item
, ///< Pointer to an item of type as defined in the constructor.
88 Real value
///< Value associated with the item.
92 * @brief Insert a pair (item,value) inside the heap.
93 * @param heap "this" pointer.
94 * @param item Item of type as defined in the constructor.
95 * @param value Value associated with the item.
97 * Usage: void heap_insert(Heap* heap, void item, Real value)
99 #define heap_insert(heap, item, value) \
101 typeof((item)) tmp = item; \
102 _heap_insert(heap, &tmp, value); \
106 * @brief Change the value of an item at a given index.
109 Heap
* heap
, ///< "this" pointer.
110 UInt index
, ///< Index of the item to modify.
111 Real newValue
///< New value for the item.
115 * @brief Change the value of an item inside the heap.
116 * @param heap "this" pointer.
117 * @param item_ Item to modify.
118 * @param newValue New value for the item.
119 * @note If several similar items are present, only the first is affected.
121 * Usage: void heap_modify(Heap* heap, void item_, Real newValue)
122 * WARNING: does not work if items are not basic type nor pointers.
124 #define heap_modify(heap, item_, newValue) \
127 typeof((item_)) item__ = item_; \
128 for (; index<heap->array->size; index++) \
130 void* pItem = ((ItemValue*)(heap->array->datas[index]))->item; \
131 if (*((typeof(&item__))pItem) == item__) break; \
133 _heap_modify(heap, index, newValue); \
137 * @brief Remove an item-value at a given index.
140 Heap
* heap
, ///< "this" pointer.
141 UInt index
///< Index of the item to remove.
145 * @brief Remove an item-value inside the heap.
146 * @param heap "this" pointer.
147 * @param item_ Item to remove.
148 * @note If several similar items are present, only the first is deleted.
150 * Usage: void heap_remove(Heap* heap, void item_)
151 * WARNING: does not work if items are not basic type nor pointers.
153 #define heap_remove(heap, item_) \
156 typeof((item_)) item__ = item_; \
157 for (; index<heap->array->size; index++) \
159 void* pItem = ((ItemValue*)(heap->array->datas[index]))->item; \
160 if (*((typeof(&item__))pItem) == item__) break; \
162 _heap_remove(heap, index); \
166 * @brief Return what is at the beginning of the heap.
168 ItemValue
* heap_top_raw(
169 Heap
* heap
///< "this" pointer.
173 * @brief Return what is at the beginning of the heap.
174 * @param heap "this" pointer.
175 * @param item_ Item to be assigned.
177 * Usage: void heap_top(Heap* heap, void item_)
179 #define heap_top(heap, item_) \
181 void* pItem = heap_top_raw(heap)->item; \
182 item_ = *((typeof(&item_))pItem); \
186 * @brief Remove the top of the heap.
189 Heap
* heap
///< "this" pointer.
193 * @brief Clear the entire heap.
196 Heap
* heap
///< "this" pointer.
200 * @brief Destroy the heap: clear it, and free 'heap' pointer.
203 Heap
* heap
///< "this" pointer.