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

Java数组直接选择排序、sort()排序

时间:2018-10-09 16:59:32      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:sort   code   循环   math   排序   两重for循环   length   span   import   

 1 /**
 2  *  1.数组sort()排序
 3  * 2.直接选择排序(两重for循环排序)
 4  */
 5 import java.lang.*;
 6 import java.lang.reflect.Array;
 7 import java.util.*;
 8 import static java.lang.StrictMath.*;
 9 
10 public class Demo1 {
11    public static void main(String args[]){
12        int[] arr = {1,4,612,333,-8,2,-12,4534,0};
13        Arrays.sort(arr);       //默认从小到大进行sort()排序
14        for(int i=0;i<arr.length;i++)
15            System.out.print(arr[i]+"\t");
16        System.out.println();
17 
18       int a[] =new int[] {1,4,612,333,-8,2,-12,4534,0};
19         for(int i=0;i<a.length;i++){  //2.直接选择排序(两重for循环排序)
20             for(int j=i+1;j<a.length;j++){
21                 if(a[i]>a[j]){
22                     int temp=a[j];
23                     a[j]=a[i];
24                     a[i]=temp;
25                 }
26             }
27         }
28        for(int i=0;i<a.length;i++)
29            System.out.print(a[i]+"\t");
30        System.out.println();
31    }
32 }

 

Java数组直接选择排序、sort()排序

标签:sort   code   循环   math   排序   两重for循环   length   span   import   

原文地址:https://www.cnblogs.com/zhazhaacmer/p/9761092.html

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