Review pages 76-84 (Section 2.3 and 2.4)
/** Reverses the order of the elements of the given queue. The content of the given stack is the same after the method call as it was before the method call (it may change in between). @param queue The queue that is reversed. @param stack The stack that is used to accomplish the reversal of the queue. */ public static void reverse(Queue queue, Stack stack)