87#define CSTL_HEAP_INITIALIZER(TYPE, MEMB, CMP, PRIV) \
89 .bt = CSTL_BINTREE_INITIALIZER(TYPE, MEMB.bn, CMP, PRIV), \
87#define CSTL_HEAP_INITIALIZER(TYPE, MEMB, CMP, PRIV) \ …
105#define DECLARE_CSTL_HEAP(NAME, TYPE, MEMB, CMP, PRIV) \
106 struct cstl_heap NAME = \
107 CSTL_HEAP_INITIALIZER(TYPE, MEMB, CMP, PRIV)
105#define DECLARE_CSTL_HEAP(NAME, TYPE, MEMB, CMP, PRIV) \ …
void cstl_xtor_func_t(void *obj, void *priv)
Type for functions called to construct, clear, or destroy an object.
int cstl_compare_func_t(const void *obj1, const void *obj2, void *priv)
Function type for comparing (in)equality of two objects.
static size_t cstl_bintree_size(const struct cstl_bintree *const bt)
Get the number of objects in the tree.
static void cstl_bintree_init(struct cstl_bintree *const bt, cstl_compare_func_t *const cmp, void *const priv, const size_t off)
Initialize a binary tree object.
void cstl_bintree_swap(struct cstl_bintree *a, struct cstl_bintree *b)
Swap the tree objects at the two given locations.
void cstl_bintree_clear(struct cstl_bintree *bt, cstl_xtor_func_t *clr, void *priv)
Remove all elements from the tree.
void * cstl_heap_pop(struct cstl_heap *h)
Remove the highest valued element from the heap.
static void cstl_heap_init(struct cstl_heap *const h, cstl_compare_func_t *const cmp, void *const priv, const size_t off)
Initialize a heap object.
const void * cstl_heap_get(const struct cstl_heap *h)
Get a pointer to the object at the top of the heap.
void cstl_heap_push(struct cstl_heap *h, void *e)
Insert a new object into the heap.
static size_t cstl_heap_size(const struct cstl_heap *const h)
Get the number of objects in the heap.
static void cstl_heap_clear(struct cstl_heap *const h, cstl_xtor_func_t *const clr)
Remove all elements from the heap.
static void cstl_heap_swap(struct cstl_heap *const a, struct cstl_heap *const b)
Swap the heap objects at the two given locations.
Node to anchor an element within a binary tree.
Node to anchor an element within a heap.