摘要:
public static void main(String[] args) { int[] arr = {9, 5, 7, 3, 1, 6, 8, 4, 2}; quickSort(arr,0,arr.length - 1); } private static void quickSort(int 阅读全文
posted @ 2024-03-23 19:22
H的世界
阅读(11)
评论(0)
推荐(0)
摘要:
public static void main(String[] args) { int[] arr = {9, 6, 8, 4, 2, 5, 7, 3, 1}; int[] arr2 = {9, 6, 8, 4, 2, 5, 7, 3, 1}; shellSort(arr); System.out 阅读全文
posted @ 2024-03-23 19:21
H的世界
阅读(11)
评论(0)
推荐(0)