快速排序(遞歸與非遞歸實現)

遞歸 public class QSort { /** * 找基準 * @param array * @param low * @param high * @return */ public static int partion(int[] array,int low,int high){ int tmp = array[low]; while(lo
相關文章
相關標籤/搜索