摘要: public class ShellSort { public static void main(String[] args) { int A[] = { 5, 2, 9, 4, 7, 6, 1, 3, 8 };// 从小到大希尔排序 sort(A,A.length); for (int i = 0; i = 1) { for (int i = h... 阅读全文
posted @ 2017-12-16 12:19 tonggc1668 阅读(106) 评论(0) 推荐(0)