摘要: class Node(object): def __init__(self,value=None,prev=None,next=None): self.value,self.prev,self.next = value,prev,next class DoubleLinkedList(object) 阅读全文
posted @ 2020-04-12 09:32 ColaIce 阅读(170) 评论(0) 推荐(0)