数组的倒置

Posted 老邱2

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组的倒置相关的知识,希望对你有一定的参考价值。

直接贴代码

 

 1 package com.cz.test;
 2 
 3 public class ArrayRevese {
 4 
 5     //数组倒置方法
 6     public static int [] getR(int arr[]){
 7         //首先定义一个新数组
 8         int resver[] =new int[arr.length];
 9         //拿出第一个值,把他放在新数组的最后一个位置
10         for(int i=0;i<arr.length;i++){
11             resver[arr.length-1-i]=arr[i];
12         }
13         
14         return resver;
15     }
16     
17     
18     public static void main(String[] args) {
19         int [] s={1,2,3,4};
20         int ss[]=getR(s);
21         for (int i : ss) {
22             System.out.println(i);
23         }
24     }
25 }

 

以上是关于数组的倒置的主要内容,如果未能解决你的问题,请参考以下文章

数组倒序排列,数组倒置,C语言数组倒序算法详解!

LeetCode 775 全局倒置与局部倒置[数组 数学] HERODING的LeetCode之路

倒置字符数组中的字符

栈的倒置(递归法)

倒置相机预览字节数组[重复]

VSCode自定义代码片段—— 数组的响应式方法