day21-110.平衡二叉树

110.平衡二叉树

力扣题目链接

给定一个二叉树,判断它是否是高度平衡的二叉树。

本题中,一棵高度平衡二叉树定义为:一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过1。

示例 1:

给定二叉树 [3,9,20,null,null,15,7]

返回 true 。

示例 2:

给定二叉树 [1,2,2,3,3,null,null,4,4]

返回 false 。

知识准备

这里要强调一些概念,什么是深度又什么是高度。

  • 深度:根节点到叶子结点的距离
  • 高度:叶子节点到根节点的距离

用一张图会更加直观

对于深度和高度的求法,各有不同,求深度应该从上到下,使用前序遍历 ,而高度是从下到上,应该是后序遍历

在之前的求二叉树的最大深度时,使用的是后序,原因是求的是叶子节点的深度,也为根节点的高度。

如果是正经用前序遍历求深度,代码如下:

cpp 复制代码
class Solution {
private:
    int res;
public:
    void getDepth(TreeNode* node, int depth){
        res = max(res,depth);
        if(node->left == nullptr && node->right == nullptr)return ;

        if(node->left){
            depth++;
            getDepth(node->left,depth);
            depth--;
        }
        if(node->right){
            depth++;
            getDepth(node->right,depth);
            depth--;
        }
        return;
    }
    int maxDepth(TreeNode* root) {
        res = 0;
        if(root == nullptr)return res;
        getDepth(root,1);
        return res;
    }
};

思路

首先确定我们要求的应该是高度,使用后序遍历。

  • 确定终止条件

if(root == null)return 0

返回0则是高度为0

  • 单层循环

确定终止条件后,分别求左右子树的高度。

cpp 复制代码
		int leftHeight = getHeight(root->left);
        if(leftHeight == -1)return -1;
        int rightHeight = getHeight(root->right);
        if(rightHeight == -1)return -1;
  • 确定高度差
cpp 复制代码
		int res = 0;
        res = abs(leftHeight-rightHeight) > 1?-1:1+max(leftHeight,rightHeight);
        return res;

最终代码如下:

cpp 复制代码
class Solution {
public:
    int getHeight(TreeNode* root){
        if(root == nullptr)return 0;
        
        int leftHeight = getHeight(root->left);
        if(leftHeight == -1)return -1;
        int rightHeight = getHeight(root->right);
        if(rightHeight == -1)return -1;

        int res = 0;
        res = abs(leftHeight-rightHeight) > 1?-1:1+max(leftHeight,rightHeight);
        return res;
    }
    bool isBalanced(TreeNode* root) {
        return getHeight(root) == -1?false:true;
    }
};

eturn res;

}

bool isBalanced(TreeNode* root) {

return getHeight(root) == -1?false:true;

}

};

复制代码
相关推荐
用户00993831430139 分钟前
代码随想录算法训练营第十三天 | 二叉树part01
数据结构·算法
shinelord明43 分钟前
【再谈设计模式】享元模式~对象共享的优化妙手
开发语言·数据结构·算法·设计模式·软件工程
薄荷故人_1 小时前
从零开始的C++之旅——红黑树及其实现
数据结构·c++
努力学习编程的伍大侠1 小时前
基础排序算法
数据结构·c++·算法
XiaoLeisj2 小时前
【递归,搜索与回溯算法 & 综合练习】深入理解暴搜决策树:递归,搜索与回溯算法综合小专题(二)
数据结构·算法·leetcode·决策树·深度优先·剪枝
Jackey_Song_Odd3 小时前
C语言 单向链表反转问题
c语言·数据结构·算法·链表
乐之者v3 小时前
leetCode43.字符串相乘
java·数据结构·算法
A懿轩A4 小时前
C/C++ 数据结构与算法【数组】 数组详细解析【日常学习,考研必备】带图+详细代码
c语言·数据结构·c++·学习·考研·算法·数组
️南城丶北离5 小时前
[数据结构]图——C++描述
数据结构··最小生成树·最短路径·aov网络·aoe网络
✿ ༺ ོIT技术༻5 小时前
C++11:新特性&右值引用&移动语义
linux·数据结构·c++