Question: Define StackQueue as an abstract data type containing the operations of both stack and queue. In StackQueue, the top of StackQueue is the same
Define StackQueue as an abstract data type containing the operations of both stack and queue. In StackQueue, the top of StackQueue is the same as the front of the StackQueue. Based on the program below, write down the outputs for part (a,b,c,d,e). If StackQueue X contains numbers (1, 2, 3, 4), where 1 is the front/top, the print format "print (X)" is "(front/top) 1 2 3 4 (rear)". StackQueue *A, *B; A malloc(sizeof (StackQueue)); B malloc(sizeof(StackQueue)); push(A, 8); push (A, 3); push (A, 5); push(A, 7); push(A, 11); print (A); // part (a) enqueue (B, 2); enqueue (B, 4); enqueue (B, 6); enqueue (B, 9); enqueue (B, 10); print (B); // part (b) enqueue (B, topandpop (A)); enqueue (B, topandpop(A)); print (B); // part (c) push(A, dequeue (B)* dequeue (B)); print (A); // part (d) pop (B); pop (B); dequeue (B); push (B, dequeue (A) + top (B)); print (B); // part (e) free StackQueue (A); free StackQueue (B);
Step by Step Solution
3.45 Rating (148 Votes )
There are 3 Steps involved in it
Initial state A fronttop 8 3 5 7 11 rear B fronttop rear Step 1 pushA 8 A fronttop 8 rear pushA 3 A ... View full answer
Get step-by-step solutions from verified subject matter experts
