zoukankan      html  css  js  c++  java
  • 数组逆序

    /**
     * 数组逆序:
     * 将一个数组中的索引进行逆序排序显示
     * 操作步骤:
     * 1、建立一个数组
     * 2、对数组进行遍历
     * 3、对数组中国索引进行互换
     * 4、遍历数组显示互换之后数据
     */
    public class LoopTest5 {
        public static void main(String[] args) {
            int[] arr = {123,321,456,324,567,543,190,987};
            //调用数组逆序方法
            test1(arr);
            //看到数组的元素,遍历
            runTest(arr);
        }
    /**
     * 定义方法:数显数组逆序
     *  1、返回值,无返回值
     *  2、参数,数组即使参数
     * **/
        public static void test1(int[] arr){
            //for的第一项,定义2个变量,最后,两个变量++ --
            for (int min = 0 , max = arr.length-1 ; min<max ; min++, max--){
                //定义一个中间变量,保存min索引
                int tem = arr[min];
                //max索引上的元素,赋值给min索引
                arr[min] = arr[max];
                //临时变量,保存的数字,赋值到max索引
                arr[max] = tem;
            }
    
        }
        //按照[]方式输出遍历数组数信息
        public static void runTest(int[] arr){
            System.out.print("[");
            //for循环
            for (int i = 0 ; i < arr.length; i++){
                //判断数组是否是最后一位,是则打印],否则打印,
                if (i==arr.length-1){
                    System.out.print(arr[i] + "]");
                }else {
                    System.out.print(arr[i] + ",");
                }
            }
        }
    }
    

      

  • 相关阅读:
    前端学HTTP之重定向和负载均衡
    前端学HTTP之Web主机托管
    前端学HTTP之内容协商
    前端学HTTP之字符集
    前端学HTTP之实体和编码
    前端学HTTP之安全HTTP
    前端学HTTP之摘要认证
    前端学HTTP之基本认证
    前端学HTTP之客户端识别和cookie
    前端学HTTP之网关、隧道和中继
  • 原文地址:https://www.cnblogs.com/lcj0703/p/10480572.html
Copyright © 2011-2022 走看看