Properties of a Binary Min-Heap
1. Structure Property
A binary min-heap has to be a complete binary tree.
2. Heap Order Property
The value of any node in a binary min-heap has to be no greater than its two children's values(if exists).
Operations Included in the Code
In the following code, you will see the operations below:
- BuildHeap
- PercolateDown
- PercolateUp
- Insert
- DeleteMin
- PrintHeap
Also, you will see the simple typedef of:
- Heap
Notes and Declarations
The code will sort the input sequence with a heap.
The language used is C.
The purpose of posting this code online is to make a quick note of my studying progress.
For students at school, DO NOT copy this code into your homework or projects. Otherwise, I will not be responsible for any punishments because of