InterviewSolution
Saved Bookmarks
| 1. |
If we implement heap as maximum heap , adding a new node of value 15 to theleft most node of right subtree. What value will be atleaf nodes of the right subtree of the heap.(a) 15 and 1(b) 25 and 1(c) 3 and 1(d) 2 and 3This question is from Heap in chapter Heap of Data Structures & Algorithms IThe question was posed to me in my homework. |
|
Answer» Right option is (a) 15 and 1 |
|