A heap tree (implemented in dynamic array) written in C!
It can be switched between min heap and max heap by modifying the header file
For Max heap:
#define HEAP_TYPE MAX_HEAP
For Min heap:
#define HEAP_TYPE MIN_HEAP
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Latest commit | ||||
A heap tree (implemented in dynamic array) written in C!
It can be switched between min heap and max heap by modifying the header file
For Max heap:
#define HEAP_TYPE MAX_HEAP
For Min heap:
#define HEAP_TYPE MIN_HEAP
Heap tree data structure