InterviewSolution
Saved Bookmarks
| 1. |
The essential part of Heap sort is construction of max-heap. Consider the tree shown below, the node 24 violates the max-heap property. Once heapify procedure is applied to it, which position will it be in?(a) 4(b) 5(c) 8(d) 9I got this question in examination.My doubt stems from Heapsort topic in section Sorting of Data Structures & Algorithms II |
|
Answer» Right choice is (d) 9 |
|