摘要: # 链表的基本操作class Node(object): def __init__(self, item): self.item = item self.next = None class SingLinkList(object): def __init__(self): self.head = N 阅读全文
posted @ 2019-01-10 18:14 飘渺云烟 阅读(170) 评论(0) 推荐(0) 编辑