10 2021 档案
摘要:顺序表 ArrayList & LinkedList 操作合集 01. 创建表 createList // 默认使用 Java 的 ArrayList 作为 顺序表, 所以不需要创建, 直接使用 ArrayList<String> mySequenceList = new ArrayList<Str
阅读全文
摘要:数组 数组的特点: 有序, 数组是同类型的. // 数组声明 int[] intArray = new int[10]; // 典型数组声明是: type[] identifer = new type[length]; // type 是数组元素类型 // identifer 是数组变量名称 //
阅读全文