class Node<E> { E element; Node<E> next; public Node(E ,e) { element=e; } } //------------------------------ 1. 空链表,head和tail都是空 Node<E> head=null; Node<E> tail=null; ------------------------------
因篇幅问题不能全部显示,请点此查看更多更全内容