【Leetcode】110. Balanced Binary Tree 解題報告

判斷一個樹是不是平衡二叉樹 方法1 遞歸 對於某個節點。求其左右子樹的高度差,如果滿足,再遞歸的判斷左右子樹。這是一種自頂而下的方法 class Solution1: def isBalanced(self, root): """ :type root: TreeNode :rtype: bool """ if root == None:
相關文章
相關標籤/搜索