894. All Possible Full Binary Trees——tree

題目分析:輸出所有的完全二叉樹 class TreeNode(object): def __init__(self, x): self.val = x self.left = None self.right = None class Solution(object): def __init__(self): # 記憶
相關文章
相關標籤/搜索