码迷,mamicode.com
首页 > 编程语言 > 详细

算法 (1)

时间:2018-11-27 16:53:24      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:ever   div   algorithm   reverse   print   temp   nbsp   组元   数组   

一、数组

颠倒数组元素的顺序:

package algorithm;

/**
 * 颠倒数组元素的顺序
 */
public class ReverseArray {

    public static void main(String[] args) {
        int array[] = {4, 3, 1, 9, 8};
        reverseArray(array);
        for(int a : array){
            System.out.print(a + " ");
        }
    }

    public static void reverseArray(int a[]){
        int N = a.length;
        for(int i=0; i<N/2; i++){
            int temp = a[i];
            a[i] = a[N-1-i];
            a[N-1-i] = temp;
        }
    }
}

 

算法 (1)

标签:ever   div   algorithm   reverse   print   temp   nbsp   组元   数组   

原文地址:https://www.cnblogs.com/tenWood/p/10026472.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!