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

【明哥工具箱】数组升序和降序

时间:2017-02-04 16:47:57      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:blog   log   div   turn   工具箱   for   arrays   logs   []   

1 int[] x={1,6,4,8,6,9,12,32,76,34,23};

 

升序:

1 Arrays.sort(x);

 

降序:

1 resort(x);
2 public int[] resort(int[] num){
3     Arrays.sort(num);
4     int[] resort=new int[num.length];
5     for(int j=0;j<num.length;j++){
6        resort[j]=num[num.length-1-j];
7     }
8     return resort;
9 }

 

【明哥工具箱】数组升序和降序

标签:blog   log   div   turn   工具箱   for   arrays   logs   []   

原文地址:http://www.cnblogs.com/dflmg/p/6365590.html

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