快速排序/选择排序
快速排序/选择排序
class Main {
public static void main(String[] args) {
int[] nums = new int[]{6, 3, 71, 1, 57, 0, 22, 6, 13, 8, 31, 8, 9};
quickSort(nums, 0, nums.length - 1);
// selectionSort(nums);
for (int i=0;i<nums.lengt
原创
2020-07-19 16:24:38 ·
87 阅读 ·
0 评论