java如何实现单链表

2024-12-01 18:09:18
推荐回答(1个)
回答1:

/**
* 结点类
*/
private static class Node {
T nodeValue; // 数据域
Node next; // 指针域保存着下一节点的引用

Node(T nodeValue, Node next) {
this.nodeValue = nodeValue;
this.next = next;
}

Node(T nodeValue) {
this(nodeValue, null);
}
}