• leetcode--110. Balanced Binary Tree


    1、问题描述

    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.

    2、边界条件:无

    3、思路:先判断两个子树的节点最大深度差是否<=1,若是,则继续检查左右子树是否平衡。

    base case:1)root == null返回true,2)两颗子树的深度差>1,则返回false。

    4、代码实现

    /**
     * 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;
            }
            int leftDepth = subTreeDepth(root.left);
            int rightDepth = subTreeDepth(root.right);
            if (Math.abs(leftDepth - rightDepth) > 1) {//取绝对值
                return false;
            }
            return isBalanced(root.left) && isBalanced(root.right);
        }
    
        public int subTreeDepth(TreeNode root) {
            if (root == null) {
                return 0;
            }
            int leftDepth = subTreeDepth(root.left);
            int rightDepth = subTreeDepth(root.right);
            return Math.max(leftDepth, rightDepth) + 1;
        }
    }

     方法二:

    For the current node root, calling depth() for its left and right children actually has to access all of its children, thus the complexity is O(N). We do this for each node in the tree, so the overall complexity of isBalanced will be O(N^2). This is a top down approach.

    2.The second method is based on DFS. Instead of calling depth() explicitly for each child node, we return the height of the current node in DFS recursion. When the sub tree of the current node (inclusive) is balanced, the function dfsHeight() returns a non-negative value as the height. Otherwise -1 is returned. According to the leftHeight and rightHeight of the two children, the parent node could check if the sub tree is balanced, and decides its return value. In this bottom up approach, each node in the tree only need to be accessed once. Thus the time complexity is O(N), better than the first solution.

    class Solution {
        public boolean isBalanced(TreeNode root) {
            return subTreeDepth(root) != -1;
        }
    
        public int subTreeDepth(TreeNode root) {
            if (root == null) {
                return 0;
            }
            int leftDepth = subTreeDepth(root.left);
            if (leftDepth == -1) {
                return -1;
            }
            int rightDepth = subTreeDepth(root.right);
            if (rightDepth == -1) {
                return -1;
            }
            if (Math.abs(leftDepth - rightDepth) > 1) {
                return -1;
            }
            return Math.max(leftDepth, rightDepth) + 1;
        }
    }

    5、api

  • 相关阅读:
    使用Link Shell Extension方便的创建同步文件
    DOM案例【3】密码强度检查案例
    DOM案例【2】注册文本倒计时
    DOM案例【1】文本时钟
    HTML5 and CSS【01】Font
    常用单词
    CSS基础【01】类和ID选择器的区别
    【03】Html重点
    【02】Html(如鹏)
    C#MD5计算代码
  • 原文地址:https://www.cnblogs.com/shihuvini/p/7456220.html
Copyright © 2020-2023  润新知