摘要: import java.util.Arrays; public class HeapSort { //数组arr下标为0的位置不使用,待排序数字放入下标为 1 ~ arr.length-1 的位置,并对这些位置上的元素排序 public static void sort(int arr[]) { H 阅读全文
posted @ 2018-03-22 20:35 Miss肉肉 阅读(187) 评论(0) 推荐(0)
摘要: import java.util.Arrays; public class QuickSort { public static void sort(int[] arr){ sort(arr,0,arr.length-1); } private static void sort(int[] arr, 阅读全文
posted @ 2018-03-22 20:19 Miss肉肉 阅读(165) 评论(0) 推荐(0)