package test;
import java.util.Arrays;
import java.util.Comparator;
public class Sort {
public static void main(String[] args) {
Integer[] arr = {1,2,5,4,3,100,99};
Arrays.sort(arr); // 升序
// 降序
Arrays.sort(arr, new Comparator<Integer>() {
@Override
public int compare(Integer o1, Integer o2) {
if(o1 < o2) {
return 1;
} else if(o1 == o2) {
return 0;
} else {
return -1;
}
}
});
for(int i=0; i<arr.length; i++) {
System.out.println(arr[i]);
}
}
}
数组排序
最新推荐文章于 2022-11-15 21:01:18 发布