2011-02-18 13:58:08 +00:00
|
|
|
/*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2006-02-08 18:06:35 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
2008-04-16 22:40:48 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
2006-02-08 18:06:35 +00:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-02-08 18:06:35 +00:00
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2006-02-08 18:06:35 +00:00
|
|
|
*/
|
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#ifndef __BLI_HEAP_H__
|
|
|
|
#define __BLI_HEAP_H__
|
2006-02-08 18:06:35 +00:00
|
|
|
|
2011-02-18 13:58:08 +00:00
|
|
|
/** \file BLI_heap.h
|
|
|
|
* \ingroup bli
|
|
|
|
* \brief A heap / priority queue ADT
|
|
|
|
*/
|
|
|
|
|
2006-02-08 18:06:35 +00:00
|
|
|
struct Heap;
|
|
|
|
struct HeapNode;
|
|
|
|
typedef struct Heap Heap;
|
|
|
|
typedef struct HeapNode HeapNode;
|
|
|
|
|
2012-05-12 20:39:39 +00:00
|
|
|
typedef void (*HeapFreeFP)(void *ptr);
|
2006-02-08 18:06:35 +00:00
|
|
|
|
|
|
|
/* Creates a new heap. BLI_memarena is used for allocating nodes. Removed nodes
|
2012-03-03 20:19:11 +00:00
|
|
|
* are recycled, so memory usage will not shrink. */
|
2014-07-17 18:56:13 +10:00
|
|
|
Heap *BLI_heap_new_ex(unsigned int tot_reserve) ATTR_WARN_UNUSED_RESULT;
|
|
|
|
Heap *BLI_heap_new(void) ATTR_WARN_UNUSED_RESULT;
|
2014-12-09 00:32:20 +01:00
|
|
|
void BLI_heap_clear(Heap *heap, HeapFreeFP ptrfreefp) ATTR_NONNULL(1);
|
2014-07-17 18:56:13 +10:00
|
|
|
void BLI_heap_free(Heap *heap, HeapFreeFP ptrfreefp) ATTR_NONNULL(1);
|
2006-02-08 18:06:35 +00:00
|
|
|
|
|
|
|
/* Insert heap node with a value (often a 'cost') and pointer into the heap,
|
2012-03-03 20:19:11 +00:00
|
|
|
* duplicate values are allowed. */
|
2014-07-17 18:56:13 +10:00
|
|
|
HeapNode *BLI_heap_insert(Heap *heap, float value, void *ptr) ATTR_NONNULL(1);
|
2006-02-08 18:06:35 +00:00
|
|
|
|
|
|
|
/* Remove a heap node. */
|
2014-07-17 18:56:13 +10:00
|
|
|
void BLI_heap_remove(Heap *heap, HeapNode *node) ATTR_NONNULL(1, 2);
|
2006-02-08 18:06:35 +00:00
|
|
|
|
|
|
|
/* Return 0 if the heap is empty, 1 otherwise. */
|
2014-07-17 18:56:13 +10:00
|
|
|
bool BLI_heap_is_empty(Heap *heap) ATTR_NONNULL(1);
|
2006-02-08 18:06:35 +00:00
|
|
|
|
|
|
|
/* Return the size of the heap. */
|
2014-07-17 18:56:13 +10:00
|
|
|
unsigned int BLI_heap_size(Heap *heap) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1);
|
2006-02-08 18:06:35 +00:00
|
|
|
|
|
|
|
/* Return the top node of the heap. This is the node with the lowest value. */
|
2014-07-17 18:56:13 +10:00
|
|
|
HeapNode *BLI_heap_top(Heap *heap) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1);
|
2006-02-08 18:06:35 +00:00
|
|
|
|
|
|
|
/* Pop the top node off the heap and return it's pointer. */
|
2014-07-17 18:56:13 +10:00
|
|
|
void *BLI_heap_popmin(Heap *heap) ATTR_NONNULL(1);
|
2006-02-08 18:06:35 +00:00
|
|
|
|
|
|
|
/* Return the value or pointer of a heap node. */
|
2014-07-17 18:56:13 +10:00
|
|
|
float BLI_heap_node_value(HeapNode *heap) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1);
|
|
|
|
void *BLI_heap_node_ptr(HeapNode *heap) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1);
|
2006-02-08 18:06:35 +00:00
|
|
|
|
2012-10-21 15:20:53 +00:00
|
|
|
#endif /* __BLI_HEAP_H__ */
|