I made an ADT in C to simulate a Binary Heap
typedef struct heap_tag { int *heap; int size; int maxSize; int type; } HEAP;
The in