A BinaryHeap is a core data structure that represents a heap within a fixed array of size n elements. More...
#include <malloc.h>
#include <stdio.h>
#include "BinaryHeap.h"
A BinaryHeap is a core data structure that represents a heap within a fixed array of size n elements.
In this implementation, the elements are all integers.