Heapify vs Heap-Sort
Feb 21, 2022 · 2 min read · Definition of Heap : Heap is a Complete Binary Tree, which satisfy the property that parent node value is larger than child nodes' (in case of MAX-HEAP) or smaller (in case of MIN-HEAP). This property of Heap has to be followed by each node with it's...
Join discussion