Question: Shift all elements by one to the right and move the last element into the first position. For example, 1 4 9 16 25 would
Shift all elements by one to the right and move the last element into the first position. For example, 1 4 9 16 25 would become 25 1 4 9 16.
starting code:
import java.util.Arrays; import java.util.Random; public class ArrayMethods
{
public static void shiftRight(int[] values) { int lastElement = array[array.length - 1];
for (int i = array.length - 1; i > 0; i--) { array[i] = array[i - 1]; }
array[0] = lastElement; }
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
