Question: Write a method called reverseFirstK that accepts an integer k and a queue of integers as parameters and reverses the order of the first k
Write a method called reverseFirstK that accepts an integer k and a queue of integers as parameters and reverses the order of the first k elements of the queue, leaving the other elements in the same relative order. For example, if a queue named q stores [10, 20, 30, 40, 50, 60, 70, 80, 90] , the call of reverseFirstK(4, q); should change the queue to store [40, 30, 20, 10, 50, 60, 70, 80, 90] . If k is 0 or negative, no change should be made. If the queue does not contain at least k elements, your method should throw an IllegalArgumentException. Use one queue or stack (but not both) as auxiliary storage.
Step by Step Solution
3.47 Rating (170 Votes )
There are 3 Steps involved in it
public static void reverse FirstK int k Queue ... View full answer
Get step-by-step solutions from verified subject matter experts
