根據輸入建立獲得一棵二叉樹或者單鏈表

python建立鏈表node class SingleNode(object): # 默認是object,下面的類也同理,可以使用class SingleNode: def __init__(self,value): self.val=value self.next=None # 建立單鏈表 class LinkedList(object): de
相關文章
相關標籤/搜索