logo CodeStepByStep logo

collectionMystery3

Language/Type: C++ collections stack queue STL

Write the output produced by the following function when passed each of the following queues. Assume that a stack prints in {bottom, ..., top} order, and a queue displays in {front, ..., back} order.

void collectionMystery3(queue<int>& q) {
    stack<int> s;
    int size = q.size();
    for (int i = 0; i < size; i++) {
        int n = q.front();
        q.pop();
        if (n % 2 == 0) {
            s.push(n);
        } else {
            q.push(n);
        }
    }
    cout << "q=" << q << endl;
    cout << "s=" << s << endl;
}
{1, 2, 3, 4, 5, 6}
{42, -3, 4, 15, 9, 71}
{30, 20, 10, 60, 50, 40, 3, 0}

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.