• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests

Data Structures | Queue | Question 1

Following is C like pseudo-code of a function that takes a Queue as an argument, and uses a stack S to do processing. 

C
void fun(Queue *Q)
{
    Stack S;  // Say it creates an empty stack S

    // Run while Q is not empty
    while (!isEmpty(Q))
    {
        // deQueue an item from Q and push the dequeued item to S
        push(&S, deQueue(Q));
    }

    // Run while Stack S is not empty
    while (!isEmpty(&S))
    {
      // Pop an item from S and enqueue the popped item to Q
      enQueue(Q, pop(&S));
    }
}

What does the above function do in general?

(A)

Removes the last from Q

(B)

Keeps the Q same as it was before the call

(C)

Makes Q empty

(D)

Reverses the Q

Answer

Please comment below if you find anything wrong in the above post
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!

Last Updated :
Share your thoughts in the comments