Question: Write a method named mirror which receives a Queue as parameter and prints out the Queue with the contents and a mirrored version of contents.

Write a method named mirror which receives a Queue as parameter and prints out the Queue with the contents and a mirrored version of contents. In java create this method with name Mirror, that accepts a stack of integers as a parameter and replaces the stack contents with itself plus a mirrored version of itself (the same elements in the opposite order). For example, if the stack stores [10, 23, 19, 44], your method should change the stack to store [10, 23, 19, 44, 44, 19, 23, 10]. If passed an empty stack, your result should be an empty stack.

In your client program, test the following stacks using the Mirror method and print out the new stacks.

[1,3,5,7,9]

[12,24,36,48,60]

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!