链表节点类 — Linked list node class
表示链表中的一个节点,包含值和指向下一个节点的引用。 Represents a node in a linked list, containing a value and a reference to the next node.
创建链表节点 — Create a linked list node
节点存储的值 / value stored in the node
Optional
下一个节点的引用(可选)/ reference to the next node (optional)
链表节点类 — Linked list node class
表示链表中的一个节点,包含值和指向下一个节点的引用。 Represents a node in a linked list, containing a value and a reference to the next node.