摘要: 下面是选择排序的思路与代码public static int[] sort(int[] arr) { //选择排序是找最小值索引,将最小值和首元素交换,依次类推 for (int i = 0; i < arr.length; i++) { int minIndex = i; for (int j = 阅读全文
posted @ 2021-07-22 19:17 张三疯321 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 以下是冒泡排序的代码与注释 public static int [] sort(int [] arr){ //冒泡排序是两两比较,如果前面的数比后面的数大,那么需要交换位置 for (int i = 0; i < arr.length-1; i++) { //-1是因为数组长度为length,索引取 阅读全文
posted @ 2021-07-22 17:53 张三疯321 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 讲师:王博 Id:10.8.159.99 昨日回顾 方法的声明 无参数无返回值:public static void 方法名(){} 无参数有返回值:public static 数据类型 方法名(){} 有参数无返回值:public static void 方法名(数据类型 形参){} 有参数有返回 阅读全文
posted @ 2021-07-22 17:28 张三疯321 阅读(27) 评论(0) 推荐(0) 编辑