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 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*
* Copyright (c) 2012, 2013 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef HEAP_H
#define HEAP_H 1
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
/* A heap node, to be embedded inside the data structure in the heap. */
struct heap_node {
size_t idx;
uint64_t priority;
};
/* A max-heap. */
struct heap {
struct heap_node **array; /* Data in elements 1...n, element 0 unused. */
size_t n; /* Number of nodes currently in the heap. */
size_t allocated; /* Max 'n' before 'array' must be enlarged. */
};
/* Initialization. */
void heap_init(struct heap *);
void heap_destroy(struct heap *);
void heap_clear(struct heap *);
void heap_swap(struct heap *a, struct heap *b);
static inline size_t heap_count(const struct heap *);
static inline bool heap_is_empty(const struct heap *);
/* Insertion and deletion. */
void heap_insert(struct heap *, struct heap_node *, uint64_t priority);
void heap_change(struct heap *, struct heap_node *, uint64_t priority);
void heap_remove(struct heap *, struct heap_node *);
static inline struct heap_node *heap_pop(struct heap *);
/* Maximum. */
static inline struct heap_node *heap_max(const struct heap *);
/* The "raw" functions below do not preserve the heap invariants. After you
* call them, heap_max() will not necessarily return the right value until you
* subsequently call heap_rebuild(). */
void heap_raw_insert(struct heap *, struct heap_node *, uint64_t priority);
static inline void heap_raw_change(struct heap_node *, uint64_t priority);
void heap_raw_remove(struct heap *, struct heap_node *);
void heap_rebuild(struct heap *);
/* Iterates through each NODE in HEAP, where NODE->MEMBER must be a "struct
* heap_node". Iterates in heap level order, which in particular means that
* the first node visited is the maximum value in the heap.
*
* If a heap_raw_*() function has been called without a later call to
* heap_rebuild(), then the first node visited may not be the maximum
* element. */
#define HEAP_FOR_EACH(NODE, MEMBER, HEAP) \
for (((HEAP)->n > 0 \
? ASSIGN_CONTAINER(NODE, (HEAP)->array[1], MEMBER) \
: ((NODE) = NULL, (void) 0)); \
(NODE) != NULL; \
((NODE)->MEMBER.idx < (HEAP)->n \
? ASSIGN_CONTAINER(NODE, \
(HEAP)->array[(NODE)->MEMBER.idx + 1], \
MEMBER) \
: ((NODE) = NULL, (void) 0)))
/* Returns the index of the node that is the parent of the node with the given
* 'idx' within a heap. */
static inline size_t
heap_parent__(size_t idx)
{
return idx / 2;
}
/* Returns the index of the node that is the left child of the node with the
* given 'idx' within a heap. */
static inline size_t
heap_left__(size_t idx)
{
return idx * 2;
}
/* Returns the index of the node that is the right child of the node with the
* given 'idx' within a heap. */
static inline size_t
heap_right__(size_t idx)
{
return idx * 2 + 1;
}
/* Returns true if 'idx' is the index of a leaf node in 'heap', false
* otherwise. */
static inline bool
heap_is_leaf__(const struct heap *heap, size_t idx)
{
return heap_left__(idx) > heap->n;
}
/* Returns the number of elements in 'heap'. */
static inline size_t
heap_count(const struct heap *heap)
{
return heap->n;
}
/* Returns true if 'heap' is empty, false if it contains at least one
* element. */
static inline bool
heap_is_empty(const struct heap *heap)
{
return heap->n == 0;
}
/* Returns the largest element in 'heap'.
*
* The caller must ensure that 'heap' contains at least one element.
*
* The return value may be wrong (i.e. not the maximum element but some other
* element) if a heap_raw_*() function has been called without a later call to
* heap_rebuild(). */
static inline struct heap_node *
heap_max(const struct heap *heap)
{
return heap->array[1];
}
/* Removes an arbitrary node from 'heap', in O(1), maintaining the heap
* invariant. Returns the node removed.
*
* The caller must ensure that 'heap' contains at least one element. */
static inline struct heap_node *
heap_pop(struct heap *heap)
{
return heap->array[heap->n--];
}
/* Changes the priority of 'node' (which must be in 'heap') to 'priority'.
*
* After this call, heap_max() will no longer necessarily return the maximum
* value in the heap, and HEAP_FOR_EACH will no longer necessarily iterate in
* heap level order, until the next call to heap_rebuild(heap).
*
* This takes time O(1). */
static inline void
heap_raw_change(struct heap_node *node, uint64_t priority)
{
node->priority = priority;
}
#endif /* heap.h */
|