赞
踩
快速排序:
/*
* 快速排序的时间复杂度为O(nlogn), 空间复杂度为O(logn)
* */
public class QuickSort<E extends Comparable> {
Swap<E> s = new Swap<>();
/*一轮排序*/
public int sort(E[] L, int low, int hight){
E temp = L[low];
while(low < hight){
while(
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。