摘要: public class Qsort{ //使key后面的数组元素大于key,前面的元素小于key,最后返回key的下标 public static int cen(int a[],int start,int end) { int key; key=a[start]; while(start<end 阅读全文
posted @ 2021-11-01 19:13 *乐途* 阅读(29) 评论(0) 推荐(0)