Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Array Exercises: Cyclically rotate a given array clockwise by one

Java Array: Exercise-45 with Solution

Write a Java program to cyclically rotate a given array clockwise by one.

Pictorial Presentation:

Java Array Exercises: Cyclically rotate a given array clockwise by one

Sample Solution:

Java Code:

import java.util.Arrays;
 public class Main
{
    static int arra[] = new int[]{10, 20, 30, 40, 50, 60};
     
    static void rotate_array()
    {
       int a = arra[arra.length-1], i;
       for (i = arra.length-1; i > 0; i--)
          arra[i] = arra[i-1];
       arra[0] = a;
    }
     
   public static void main(String[] args) 
    {
        System.out.println("Original arraay:");
        System.out.println(Arrays.toString(arra));
         
        rotate_array();
         
        System.out.println("Rotated arraay:");
        System.out.println(Arrays.toString(arra));
    }
}

Sample Output:

                                                                              
Original arraay:
[10, 20, 30, 40, 50, 60]
Rotated arraay:
[60, 10, 20, 30, 40, 50]

Flowchart:

Flowchart: Cyclically rotate a given array clockwise by one

Visualize Java code execution (Python Tutor):


Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to count the number of possible triangles from a given unsorted array of positive integers.
Next: Write a Java program to check whether there is a pair with a specified sum of a given sorted and rotated array.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe