Heap / Priority Queue (Min-Heap)

Problem Statement:

Visualize how a Min-Heap works using insertions and deletions.

Heap property: Parent ≤ Children. Maintained using Bubble Up and Bubble Down.

Step 0: Empty Heap.