摘要: 1 /** 2 * 插入排序 3 * @param a 4 * @date 2016-10-8 5 * @author shaobn 6 */ 7 public static void insertSort(int[] a){ 8 for(int i ... 阅读全文
posted @ 2016-10-08 10:21 邻家小书童 阅读(254) 评论(0) 推荐(0)
摘要: 1 /** 2 * 选择排序 3 * @param a 4 * @date 2016-10-8 5 * @author shaobn 6 */ 7 public static void selectSort(int[] a){ 8 for(int i ... 阅读全文
posted @ 2016-10-08 09:30 邻家小书童 阅读(200) 评论(0) 推荐(0)
摘要: 1 /** 2 * 冒泡排序 3 * @param a 4 * @date 2016-10-8 5 * @author shaobn 6 */ 7 public static void bubbleSort(int[] a){ 8 int temp =... 阅读全文
posted @ 2016-10-08 09:20 邻家小书童 阅读(185) 评论(0) 推荐(0)
摘要: 1 /** 2 * 二分查找 3 * @param a 4 * @param n 5 * @param value 6 * @return 7 * @date 2016-10-8 8 * @author shaobn 9 */ 10 public static int binaryF... 阅读全文
posted @ 2016-10-08 08:59 邻家小书童 阅读(282) 评论(0) 推荐(0)