Home >>Java Programs >Java Program to left rotate the elements of an array

Java Program to left rotate the elements of an array

Java Program to left rotate the elements of an array

In this program, we will create a Java program to rotate the elements of an array towards the left by the specified number of times.

In the left rotation, each element of the given array will be shifted to its left by one position and the first element of the array will be added to the end of the list. This process will be followed for a specified number of times.

Program:

class Main {  
public static void main(String[] args) {  
int [] arr = new int [] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13};  
int n = 5;  
System.out.println("Original array: ");  
for (int i = 0; i < arr.length; i++) {  
System.out.print(arr[i] + " ");  
}  
for(int i = 0; i < n; i++){  
int j, first;  
first = arr[0];  
for(j = 0; j < arr.length-1; j++){  
arr[j] = arr[j+1];  
}  
arr[j] = first;  
}  
System.out.println();  
System.out.println("Array after left rotation: ");  
for(int i = 0; i< arr.length; i++){  
System.out.print(arr[i] + " ");  
}  
}  
}  

Output:
Original array:
1 2 3 4 5 6 7 8 9 10 11 12 13
Array after left rotation:
6 7 8 9 10 11 12 13 1 2 3 4 5

Java Programs Check Palindrome Number in Java Factorial Program using loop in java Factorial Program using recursion in java Fibonacci Series Program in Java using recursion Fibonacci series without using recursion in Java Find an Armstrong Number in Java Prime Number Program in Java Find Prime numbers between two numbers in Java Break statement in Java for each loop in Java Typecasting in Java Printing the format text with printf in Java How to generate random numbers within a range in Java Java Program to count all punctuation characters in the string Java program to print the following given pattern Java program to print the following given pattern Java program to print the following given pattern Java program to print the following pattern Java program to print the following pattern Java program to print the given pattern Java program to print the given pattern Java program to print the given pattern Java program to print the following pattern Java program to print the following pattern Java Program to Print the following Pattern Java program to print the following pattern Java Program to Print the following Pattern Java Program to print the smallest element in an array Java Program to Print the following pattern Java Program to Print the following pattern Java Program to Print the following Pattern Java Program to Copy One Array to Another in Java Java Program to find the frequency of each element in a array Java Program to left rotate the elements of an array Java Program to print the duplicate elements of an array Java Program to print the elements of an array Java Program for binary search Java Program for linear search Java Program for bubble sort Java Program for insertion sort Java Program for selection sort Java Program to print the elements of an array present on even position Java Program to print the elements of an array in reverse order Java Program to find Third Largest Number in an Array Java Program to print the largest element in an array Print the number of elements in an array java Java Program to print the sum of all the items of the array Java Program to right rotate the elements of an array Java Program to sort the elements of an array in ascending order Java Program to sort the elements of an array in descending order Java Program to print the elements of an array present on odd position Java Program to Check if it is a Sparse Matrix Java Program to check a given matrix is an identity matrix Java Program to determine whether two matrices are equal Java Program to display the lower triangular matrix Java Program to find the product of two matrices
No Sidebar ads