Data Structures 501324-3 Sections: 2759& 3137   Question : Stack & Queue Assume that you have a stack S, a queue Q, and the standard stack - queue operations: push, pop, enqueue and dequeue. Assume that print is a function that prints the value of its argument. Execute, in top-to-bottom order, the operations below and answer the following questions. push(S, ‘T’); enqueue(Q, ‘I’); push(S,dequeue(Q)); enqueue(Q, ‘I’); enqueue(Q, ‘G’); print(dequeue(Q)); enqueue(Q, T); push(S, ‘I’); push(S, dequeue(Q)); print(pop(S)); enqueue(Q, pop(S)); push(S, ‘O’); print(pop(S)); enqueue(Q, ‘O’); print(dequeue(Q)); enqueue(Q, pop(S)); push(S, dequeue(Q)); print(pop(S)); print(pop(S));

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter18: Stacks And Queues
Section: Chapter Questions
Problem 21SA
icon
Related questions
Question

Data Structures

501324-3

Sections: 2759& 3137

 

Question : Stack & Queue

Assume that you have a stack S, a queue Q, and the standard stack - queue operations: push, pop, enqueue and dequeue. Assume that print is a function that prints the value of its argument. Execute, in top-to-bottom order, the operations below and answer the following questions.

push(S, ‘T’);

enqueue(Q, ‘I’);

push(S,dequeue(Q));

enqueue(Q, ‘I’);

enqueue(Q, ‘G’);

print(dequeue(Q));

enqueue(Q, T);

push(S, ‘I’);

push(S, dequeue(Q));

print(pop(S));

enqueue(Q, pop(S));

push(S, ‘O’);

print(pop(S));

enqueue(Q, ‘O’);

print(dequeue(Q));

enqueue(Q, pop(S));

push(S, dequeue(Q));

print(pop(S));

print(pop(S));

 

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Stack
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning