Java 程序循环旋转数组一次。


循环旋转数组的内容 −

  • 创建一个空变量。(temp)
  • 将数组的最后一个元素保存在其中。
  • 现在,从数组的第 n 个元素开始,用前一个元素替换当前元素。
  • 将 temp 中的元素存储在第 1 个位置。

示例

 实时演示

import java.util.Arrays;
import java.util.Scanner;
public class CyclicallyRotateanArray {
   public static void main(String args[]){
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter the required size of the array ::");
      int size = sc.nextInt();
      int [] myArray = new int[size];
      System.out.println("Enter elements of the array");
      for(int i=0; i< size; i++){
         myArray[i] = sc.nextInt();
      }
      System.out.println("Contents of the array: "+Arrays.toString(myArray));
      int temp = myArray[size-1];
      for(int i = size-1; i>0; i--){
         myArray[i] = myArray[i-1];
      }
      myArray[0] = temp;
      System.out.println("Contents of the cycled array: "+Arrays.toString(myArray));
   }
}

输出

Enter the required size of the array ::
5
Enter elements of the array
14
15
16
17
18
Contents of the array: [14, 15, 16, 17, 18]
Contents of the cycled array: [18, 14, 15, 16, 17]

更新时间: 2019 年 7 月 30 日

3K+ 查看次数

开启您的 职业生涯

完成该课程获得认证

开始
广告