how to rotate value in array java code example
Example 1: array rotation program in java
static void rotLeft(int[] a, int d)
{
int [] n = new int[a.length];
for(int i = 0; i < a.length; i++)
{
int newlocation = (i+(a.length - d))% a.length;
n[newlocation] = a[i];
}
for(int i = 0; i < a.length; i++)
{
System.out.print(n[i]+ " ");
}
}
Example 2: how to rotate array java recursively
private static void rotateLeftOne(char[] arr, int length, int num) {
int pos = length - num;
if (pos != length - 1)
{
char temp = arr[pos];
arr[pos] = arr[pos + 1];
arr[pos + 1] = temp;
rotateLeftOne(arr, length, num - 1);
}
}