快速排序--遞歸

public class QuickSort { public static int partition(int[] data, int low, int high) { int key = data[low]; while (low < high) { while (data[high] >= key && low < high)
相關文章
相關標籤/搜索