平衡二叉树的判断

Posted 码上哈希

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了平衡二叉树的判断相关的知识,希望对你有一定的参考价值。

输入一棵二叉树,判断该二叉树是否是平衡二叉树。

平衡二叉树左右子树深度只差不超过1.

public class Solution {
    
    private boolean isAVL = true;
    
    public boolean IsBalanced_Solution(TreeNode root) {
        
        if (root == null)
            return true;
        
        depth(root);
        return isAVL;
    }
    
    public int depth(TreeNode root) {
        if (root == null)
            return 0;
        int leftDepth = depth(root.left);
        int rightDepth = depth(root.right);
        if (leftDepth - rightDepth > 1 || leftDepth - rightDepth < -1) {
            isAVL = false;
        }
        return leftDepth>rightDepth ? leftDepth+1:rightDepth+1;
    }
}

 

以上是关于平衡二叉树的判断的主要内容,如果未能解决你的问题,请参考以下文章

平衡二叉树的判断

判断二叉树是否平衡二叉树

平衡二叉树的判断

每日一道面试题-平衡二叉树的判断

平衡二叉树的判断

[数据结构4.8]平衡二叉树