# 单向链表节点数据结构 class Node: def __init__(self, value, next=None): self.value = value self.next = next v = Node('单', Node('向', Node('链', Node('表')))) print(v.next.next.value)
高级设计师
by: Python自学 发表于:2022-10-27 02:31:29 顶(0) | 踩(0) 回复
输出:链
高级设计师
by: Python自学 发表于:2022-10-27 02:31:29 顶(0) | 踩(0) 回复
输出:链
回复评论