Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 579 Bytes

File metadata and controls

23 lines (14 loc) · 579 Bytes

c_data_structures

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