数据结构——链表的实现 public class LinkList<E> { private class node{ public E e; public node next; public node(E e,node next){ this.e=e; this.next=next; } public node(E e){ this(e,null); } ... 数据结构 2024-06-16 41 点赞 0 评论 62 浏览