數據結構與算法 單鏈表實現

#單鏈表實現(鏈表) #要學的重點才從這裏剛剛開始 class Node(object): def __init__(self, value = None, next = None): self.value, self.next = value, next class LinkedList(object): def __init__(self, maxsiz
相關文章
相關標籤/搜索