您的位置 首页 JAVA(2017)

110. Balanced Binary Tree

Given a binary tree, determine if it is height-balanced.

For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1.

 

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public boolean isBalanced(TreeNode root) {
        if(root == null) return true;
        if(deep(0,root) == -99) return false;
        return true;
    }
    public int deep(int deep, TreeNode root){
        if(root == null){
            return deep-1;
        }
        int l = deep(deep+1,root.left);
        int r = deep(deep+1,root.right);
        if(Math.abs(l-r) >1){
            return -99;
        }
        return l>r?l:r;
    }
}
看完了?留个评分呗?
[0人评了分,平均: 0/5]

本站原创文章皆遵循“署名-非商业性使用-相同方式共享 3.0 (CC BY-NC-SA 3.0)”。转载请保留以下标注:

原文来源:《110. Balanced Binary Tree》

发表评论

邮箱地址不会被公开。

返回顶部