InterviewSolution
Saved Bookmarks
| 1. |
Which operation is not efficiently performed in a d-heap?(a) insert(b) delete(c) find(d) mergeThe origin of the question is Heap in chapter Heap of Data Structures & Algorithms II had been asked this question by my school principal while I was bunking the class. |
|
Answer» RIGHT option is (d) merge The best I can explain: UNLIKE FIND operation, which cannot be PERFORMED in a d-heap, the task of merging two d-heaps is very DIFFICULT. |
|