Can both insert and findMin be implemented in constant time?
Read moreTextbook Solutions for Data Structures and Algorithm Analysis in Java
Question
Suppose we need to perform M percolateUps and N deleteMins on a d-heap thatinitially has N elements.a. What is the total running time of all operations in terms of M, N, and d?b. If d = 2, what is the running time of all heap operations?c. If d = (N), what is the total running time? d. What choice of d minimizes the total running time?
Solution
The first step in solving 6 problem number 15 trying to solve the problem we have to refer to the textbook question: Suppose we need to perform M percolateUps and N deleteMins on a d-heap thatinitially has N elements.a. What is the total running time of all operations in terms of M, N, and d?b. If d = 2, what is the running time of all heap operations?c. If d = (N), what is the total running time? d. What choice of d minimizes the total running time?
From the textbook chapter Priority Queues (Heaps) you will find a few key concepts needed to solve this.
Visible to paid subscribers only
Step 3 of 7)Visible to paid subscribers only
full solution