/**
* 结点类
*/
private static class Node
T nodeValue; // 数据域
Node
Node(T nodeValue, Node
this.nodeValue = nodeValue;
this.next = next;
}
Node(T nodeValue) {
this(nodeValue, null);
}
}