python 实现无序列表
摘要:
1 # -*- coding:utf-8 -*- 2 class Node: 3 def __init__(self, initdata): 4 self.data = initdata 5 self.next = None 6 7 def getData(self): 8 return self.... 阅读全文
posted @ 2017-03-09 17:28 司徒道 阅读(729) 评论(0) 推荐(0) 编辑