Skip to content

Latest commit

 

History

History

day58

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

cover

Day 58 - Binary Heap

Ques) Write a program to implement a binary heap

Binary Heap

A Binary Heap is a Binary Tree with following properties.

  1. It’s a complete tree (All levels are completely filled except possibly the last level and the last level has all keys as left as possible). This property of Binary Heap makes them suitable to be stored in an array.
  2. A Binary Heap is either Min Heap or Max Heap. In a Min Binary Heap, the key at root must be minimum among all keys present in Binary Heap. The same property must be recursively true for all nodes in Binary Tree. Max Binary Heap is similar to MinHeap.

Referance: Geeks4Geeks

Solution

JavaScript Implementation

// To Be Added