InterviewSolution
Saved Bookmarks
| 1. |
In a binomial heap the root value is greater than left child and less than right child.(a) True(b) FalseAsked question is from Binomial and Fibonacci Heap topic in section Heap of Data Structures & Algorithms II had been asked this question in a job interview. |
|
Answer» CORRECT choice is (b) False The explanation is: Binomial TREE USED in MAKING binomial heap FOLLOWS min heap property. |
|