拉长小虾米

文章
5
资源
0
加入时间
2年10月24天

算法导论(快速排序)

1.pivot为数组的最后一个数。2.使用一个for循环就能完成partition部分。package algorithm.sort;import java.util.Arrays;public class Quicksort { public static void main(String[] args) { int[] arr = {-9,78,0,23,-587,70}; QUICKSORT(arr, 0, arr.length-1);