cdsa
Arena allocators and friends
|
Represents a single item in the heap. More...
#include <heap.h>
Data Fields | |
void * | data |
Pointer to the item data. | |
HeapItem * | parent |
Pointer to the parent item. | |
HeapItem * | left |
Pointer to the left child item. | |
HeapItem * | right |
Pointer to the right child item. | |
HeapItem * | next |
Pointer to the next item in insertion order. | |
Represents a single item in the heap.