摘要: 常用集合类的继承结构如下: Collection<--List<--Vector Collection<--List<--ArrayList Collection<--List<--LinkedList Collection<--Set<--HashSet Collection<--Set<--Ha 阅读全文
posted @ 2017-08-07 00:57 idea偶买噶 阅读(118) 评论(0) 推荐(0) 编辑
摘要: private static class Node { E item; Node next; Node prev; Node(Node prev, E element, Node next) { this.item = element; this.next = next; ... 阅读全文
posted @ 2017-08-07 00:53 idea偶买噶 阅读(111) 评论(0) 推荐(0) 编辑