InterviewSolution
Saved Bookmarks
| 1. |
A priority queue Q is used to implement a stack S that stores characters. PUSH(C) is implemented as INSERT(Q, C, K) where K is an appropriate integer key chosen by the implementation. POP is implemented as DELETEMIN(Q). For a sequence of operations, the keys chosen are in(A) Non-increasing order(B) Non-decreasing order(C) strictly increasing order(D) strictly decreasing order |
| Answer» | |