This is Java
Move the Nthelement 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:
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
This is java.
Thanks.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here