arr, 0, arr.length - 1);
}
public static void sort(int[] arr, int L, int R) {
if (L < R) {
// 随机比较数排序...swap(arr, L + (int) (Math.random() * (R - L + 1)), R);
int book[] = quick(arr, L, R);
// 小于区域排序...sort(arr, L, book[0] - 1);
// 大于区域排序
sort(arr, book[1] + 1, R);
}
}
public static int