魅力峰值

导航

2019年10月30日 #

快速排序

摘要: public class TestOrder { static int[] s = {11 ,3 ,51, 33, 66, 77, 22 ,6}; public static void main(String[] args) { quitSort(s, 0 , 7); for (int s :s){ System.out.println(s); } } /** * @Auther sunpz * 阅读全文

posted @ 2019-10-30 17:59 魅力峰值 阅读(121) 评论(0) 推荐(0) 编辑