Options
All
  • Public
  • Public/Protected
  • All
Menu

Module 6. Heap

Heap is a specialized tree-based data-structure that satisfies following heap-properties

  • Min Heap -> Key of Parent Node is always less than or equal to the key of Child Node
  • Max Heap -> Key of Parent Node is always greater than or equal to the key of Child Node

Classes