Question: 11. Suppose we implement a priority queue using a linked list. INSERT is done by simply adding new values to the head of the list;

11. Suppose we implement a priority queue using a linked list. INSERT is done by simply adding new values to the head of the list; FIND-MIN is done by scanning through the list to find the minimum value; EXTRACT-MIN is done by using the FIND-MIN function and then deleting the value. The worst case runtimes of the most expensive operation among INSERT, FIND-MIN, EXTRACT-MIN IS: 0(1) O O(logn) O O(n) O O(n log n)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
