标签:
对于搞算法的人经常使用到快排(快速排序的简称),
对于C++中的sort(,,)来说是快排的方法,相对来说对于JAVA来说,也有快排的调用,
这里的方法是
Arrays.sort(数组名字);
代码:
package com;
import java.util.Arrays;
public class Arry {
public static void main(String[] args) {
// TODO Auto-generated method stub
int[] a = new int[5];
a[0] = 9;
a[1] = 4;
a[2] = 6;
a[3] = 2;
a[4] = 7;
Arrays.sort(a);
for(int i : a){
System.out.println(i);
}
}
}
标签:
原文地址:http://blog.csdn.net/u012965373/article/details/43605059