2018年3月15日
摘要: package com.cn.sotred; import java.util.Arrays; public class BubbleSort { public static void main(String[] args) { int[] a = { 50, 33, 26, 1, 7, 9, 46, 2, 23, 55, 72, 234, 34, 6, 21, 74... 阅读全文
posted @ 2018-03-15 20:21 改变一下 阅读(122) 评论(0) 推荐(0) 编辑
摘要: package com.insert; import java.util.Arrays; /** * 希尔排序 * * @author wanjn * */ public class ShellSort { public static void main(String[] args) { int[] a = { 50, 3, 6, 1, 7, 9, 6, ... 阅读全文
posted @ 2018-03-15 19:49 改变一下 阅读(136) 评论(0) 推荐(0) 编辑