06 2021 档案
摘要:/** * hashmap的demo * @author cuiyc * @version 1.0 * @date 2021/6/5 22:28 */ public class HashMapDemo { public static void main(String[] args) { Map<St
阅读全文
摘要:1 /**自己实现linkedlsit 2 * 添加 addFirst(E e) addLast(E e) add(E e) add(int index,E e) 3 * 获取 get(int index) getLast() getFirst() 4 * 删除 removeFirst() remv
阅读全文
摘要:/** * 自己实现arraylist * 添加 add(E e) add(int index,E e) * 获取 get(int index) * 删除 remove(int index) remove(object o) * 替换 set(int index) * 长度 getSize() *
阅读全文