📜  python 节点类 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:08.821000             🧑  作者: Mango

代码示例1
class Node(object):
 
    def __init__(self, data=None, next_node=None):
        self.data = data
        self.next_node = next_node