This is Java Move the N th element to the back of the Queue. Write the Java program that reads 5 integers in from the keyboard (user input) and loads the integers into a Queue. Add a method...


This is Java




Move the N



th




element to the back of the Queue.



Write the Java program that reads 5 integers in from the keyboard (user input) and loads the integers into a Queue.


Add a method ‘moveNth(queue, locationToMove );’ that accepts a queue and an integer, as the two parameters. Your ‘moveNth’ method will find the ‘locationToMove’ and “move that value to the end of the Queue.”


For example:


Method Call – moveNth(queue, 3);
















Queue before Call:



1




2 3 4 5



Queue after call:



1



2 4 5 3



Your code can only use the queue data structure (and if wanted, an integer variable to store each integer read from the user’s input).



Sample method calls in main()


loadQueue(queue);


displayQueue(queue);


moveNth(queue, 4); // your code should work for any locationToMove


displayQueue(queue);


This is java.


Thanks.






Jun 06, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here