快速排序

先手打一個快速排序熱身 排序方法不少,選一個快速排序傍身沒錯的 code:web public void QuickSort(int[] data,int start ,int end) { int low = start; int high = end; if(low < high) { int tmp = data[low]; while(low<high) { while(low<high
相關文章
相關標籤/搜索