logo Practice-It logo

BJP3 Self-Check 14.18: stackQueueMystery3

Language/Type: Java Collections mystery Stacks and Queues
Author: Marty Stepp (on 2013/04/01)

Write the output produced when the following method is passed each of the following queues. Recall that stacks and queues print in an [a, b, c] format from bottom/front to top/back.

public static void mystery3(Queue<Integer> q) {
    int size = q.size();
    for (int i = 0; i < size; i++) {
        int n = q.remove();
        if (n > 0) {
            q.add(-n);
        }
    }
    System.out.println(q);
}
[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

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.