Min Heap Construction
Min heap is a binary tree-like structure, which satisfies the following conditions:
Each node value is lesser than the children's.
It should be a complete tree, if not then the extra children should be added on the left leaf nodes.
Min heap is i...
blog.arpancodes.io3 min read