上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页
摘要: 基本思路: 保证0~0有序,然后0~1有序,0~2有序,0~i有序的过程 因为0~0肯定是有序的 所以外循环从1开始 比较条件: 前面还有没有数据 && 前面索引的值 > 后面索引的值 时间复杂度最差情况是bigO(n2) 最好情况是bigO(n) public class InsertionSor 阅读全文
posted @ 2020-07-02 22:51 硬盘红了 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 基本思路就是索引(0,1)比较,(1,2)比较,(2,3)比较依次进行比较,最后索引最大处的值必然为最大的值,外层循环每进行一轮比较就可以减少一次 比如第一轮是(0~n-1) 第二轮就是 (0~n-2) 时间复杂度也是bigO(n2) public class BubbleSort { public 阅读全文
posted @ 2020-07-02 22:46 硬盘红了 阅读(133) 评论(0) 推荐(0) 编辑
摘要: public class SelectionSort { public static void selectionSort(int[] arr) { //边界判断 if (arr == null || arr.length < 2) { return; } //1.控制范围 i~n-1 for (i 阅读全文
posted @ 2020-07-02 20:31 硬盘红了 阅读(108) 评论(0) 推荐(0) 编辑
摘要: public class Parentheses { public static void main(String[] args) { Stack<String> s = new Stack<>(); String string = StdIn.readString(); String[] inpu 阅读全文
posted @ 2020-06-30 18:49 硬盘红了 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Student类: public class Student { public void study(){ System.out.println("好好学习,天天向上"); } } View Code Teacher类: public class Teacher { public void teac 阅读全文
posted @ 2020-06-21 21:38 硬盘红了 阅读(146) 评论(0) 推荐(0) 编辑
摘要: public class ReflectTest { public static void main(String[] args) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException { Ar 阅读全文
posted @ 2020-06-21 21:02 硬盘红了 阅读(139) 评论(0) 推荐(0) 编辑
摘要: public class ReflectDemo04 { public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, Invo 阅读全文
posted @ 2020-06-21 20:52 硬盘红了 阅读(113) 评论(0) 推荐(0) 编辑
摘要: Method[] getMethods() 返回包含一个数组 方法对象反射由此表示的类或接口的所有公共方法类对象,包括那些由类或接口和那些从超类和超接口继承的声明。 public class ReflectDemo03 { public static void main(String[] args) 阅读全文
posted @ 2020-06-21 17:06 硬盘红了 阅读(211) 评论(0) 推荐(0) 编辑
摘要: public class ReflectDemo02 { public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, Invo 阅读全文
posted @ 2020-06-21 15:24 硬盘红了 阅读(158) 评论(0) 推荐(0) 编辑
摘要: Field[] getFields() 返回包含一个数组Field对象反射由此表示的类或接口的所有可访问的公共字段类对象。 public class ReflectDemo01 { public static void main(String[] args) throws ClassNotFound 阅读全文
posted @ 2020-06-21 15:15 硬盘红了 阅读(544) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页