Check if a given Binary Tree is Heap - GeeksforGeeks
Check if a given Binary Tree is Heap
Given a binary tree we need to check it has heap property or not, Binary tree need to fulfill following two conditions for being a heap –
- It should be a complete tree (i.e. all levels except last should be full).
- Every node's value should be greater than or equal to its child node (considering max-heap).
For example this tree contains heap property –
Read full article from Check if a given Binary Tree is Heap - GeeksforGeeks
No comments:
Post a Comment