摘要:
双向链表 public class Node { Object o; Node up; Node down; public Object getO() { return o; } public void setO(Object o) { this.o = o; } public Node getUp 阅读全文
摘要:
链表 节点 Node up; Node down; Object o; 属性Node first; Node last; int size; 方法 add(Object o); remove(int index); get(int index); getNode(int index); isEmpt 阅读全文