Struct binheap

Struct Documentation

struct binheap

Binary heap structure.

A heap in which the smallest/largest element is guaranteed to always be on the top of the heap; other elements can be in any order.

Implemented using a binary tree inside a darray.

Public Members

struct darray arr

The underlying array with the actual data.

uint32_t flags

Configuration flags. Valid flags are:

All other flags are ignored.