Question: Please give explanation why you chose your answer so I can compare with answer I chose to see difference if there are any. Thanks will
Please give explanation why you chose your answer so I can compare with answer I chose to see difference if there are any. Thanks will give good feedback

Question 6 1 pts Suppose we wish to use a priority queue inside another algorithm, where we know there will be n Insert operations, m2 Change-Key operations, and n Extract-Max operations. Which data structure should we use to implement the priority queue in order to minimize the asymptotic expected running time? Binary heap, as seen in class Sorted list (as 1 question above) Hash table (as two questions above) O Question 7 1 pts Suppose we now have to implement a priority queue in a setting where we know the priorities always come from the set 1,..., r We can consider yet another data structure: we maintain an array of r lists, where the i-th list contains all the elements currently in the priority queue that have priority i. How fast can the basic priority queue operations be implemented using this particular data structure, assuming the priority queue contains n elements? Choose the tightest upper bounds that apply. Insert: O(r) Extract-Max: O(1) Insert: O(1) Extract-Max: O(r) Insert: O(1) Extract-Max: O(1) Insert: O(r) Extract-Max: O(r)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
