Question: Write a method in Java that will return a Queue containing every other number of a given Queue. For example, if the given queue contains
Write a method in Java that will return a Queue containing every other number of a given Queue. For example, if the given queue contains {12, 14, 15, 20, 25} then the returned queue must contain {12, 15, 25}.
Note: Once the execution returns to the caller method, the given queue should contain exactly the same elements in the same sequence as before making the call. Assume that a standard Queue class is available. You may NOT create any temporary container inside the method. That is, creation of arrays, vectors, lists, stacks, or any other temporary queue that is not returned is prohibited in this method. The header of the method is provided below.
public static Queue getEveryOtherElements(Queue q){ }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
