码迷,mamicode.com
首页 > 其他好文 > 详细

剑指 Offer 55 - II. 平衡二叉树

时间:2021-04-13 12:05:30      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:public   code   off   null   roo   root   max   mat   init   

利用上一题求深度的做法

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {

    Boolean res = true;


    public boolean isBalanced(TreeNode root) {
        dfs(root);
        return res;
    }

    int dfs(TreeNode root){
        if(root == null) return 0;
        int left = dfs(root.left);
        int right = dfs(root.right);
        if(Math.abs(left-right) > 1) res = false;
        return Math.max(left, right) + 1;
    }
}

剑指 Offer 55 - II. 平衡二叉树

标签:public   code   off   null   roo   root   max   mat   init   

原文地址:https://www.cnblogs.com/vccyb/p/14648060.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!