机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
C++
在线答题
积分排行榜
活跃排行榜
网盘
链接
打字练习
Microbit
未登录
未登录
登录学习
作者:
高嘉远
更新时间:
2024-09-25 18:21
浏览:
178次
点赞:
0次
热度:
20
class Node: def __init__(self,item): self.item=item self.next=None#next是下一个节点的标识 class S: def __init__(self): self.head=None s=S() s.head=Node(1) e2=Node(2) e3=Node(3) s.head.next=e2 e2.next=e2 print(s.head.item) print(s.head.next.item)
点赞成功
分享作品
×