logo CodeStepByStep logo

stackUsingqueue

Language/Type: C++ stack queue collections STL
Related Links:

Your job is to implement a stack<int> using only a queue(s). That is, you will be responsible for writing the push and pop methods for a stack<int> but your internal data representation must be a queue:

void push(queue<int>& queue, int element)
int pop(queue<int>& queue)
Function: Write a C++ function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.