摘要: 代码来自码云 public static void shellSort(int[] arr){ //初始化增量 int h = 1; //计算最大间隔,公式:h = h * 3 + 1 while(h < arr.length / 3){ h = h * 3 + 1; } //缩小增量进行排序 wh 阅读全文
posted @ 2017-10-11 13:56 累人猿 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 代码来自码云 阅读全文
posted @ 2017-10-11 13:53 累人猿 阅读(190) 评论(0) 推荐(0) 编辑