数据结构(Java)-第2章线性表 链表
- //在不确定数据域数值的情况下,采用泛型定义public class Node<E> { E data; //数据域 Node<E>
数据结构(Java)-第2章线性表 链表