Implementations of the following data structures in the C programming language: - Heap
Heap (Min/Max): sorts its keys based on their value, either in increasing order (if MIN heap) or decreasing order (if MAX heap) - insert - peak top - extract top - print - build from array
The make command builds a program that runs the example programs. The executable file generated via the following command: make
The executable file along with machine code are deleted via the following command: make clean