COMPUTER SCIENCE AND ENGINEERING
DATA STRUCTURES
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
Suppose implementation supports an instruction REVERSE, which reverses the order of elements on the stack, in addition to the PUSH and POP instructions. Which one of the following statements is TRUE with respect to this modified stack?
|
A queue cannot be implemented using this stack.
|
|
A queue can be implemented where ENQUEUE takes a single instruction and DEQUEUE takes a sequence of two instructions.
|
|
A queue can be implemented where ENQUEUE takes a sequence of three instructions and DEQUEUE takes a single instruction.
|
|
A queue can be implemented where both ENQUEUE and DEQUEUE take a single instruction each.
|
Explanation:
Detailed explanation-1: -(D) A queue can be implemented where both ENQUEUE and DEQUEUE take a single instruction each. Explanation: To DEQUEUE an item, simply POP.
Detailed explanation-2: -Expert-Verified Answer. Answer: yes, it is possible to implement multiple stacks in a Queue.
There is 1 question to complete.