-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
Implement MinHeap
class that supports:
- building Min Heap from an input array of integers
- Removing the heap's minimum / root value
- Inserting integers in the heap.
- Peeking at heap's minimum / root value
- shifting integers up & down the heap, which is to be used when inserting & removing values.