Questions about standard ADTs and their implementations that we have studied, including asymptotic analysis of their operations under various implementations.
A DougPriorityQueue uses time (real numbers, not ints) for its priorities. The bigger the time of an item, the more important it is. Describe a good time-efficient implementation of DougPriorityQueue. What is the big O performance of your implementation for the two most important operations? Show a picture of your implementation when the following four items are in your DougPriorityQueue: name=Bob, time=2.31; name=Jim, time=17.2; name=Bill, time=11.1; and name=Tom, time=22.