1 Star 1 Fork 1

Mr_Chu/leetcode

forked from WuZe-wz/leetcode 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
平衡二叉树_判断是否高度平衡.java 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
/**
* @author wuze
* @desc ...
* @date 2021-05-06 00:07:23
*/
public class 平衡二叉树_判断是否高度平衡 {
public class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode() {}
TreeNode(int val) { this.val = val; }
TreeNode(int val, TreeNode left, TreeNode right) {
this.val = val;
this.left = left;
this.right = right;
}
}
class Solution {
/*
思路:
左右子树递归,判断层数
自底向上!(时间复杂度 O(n) )
*/
boolean res=true;
public boolean isBalanced(TreeNode root) {
if(root==null){
return true;
}
dfs(root);
return res;
}
int dfs(TreeNode node){
if(node==null){
return 0;
}
int leftcount = dfs(node.left)+1;
int rightcount = dfs(node.right)+1;
if(Math.abs(rightcount-leftcount)>1){
res=false;
}
//这个 return 是有讲究的!
//(关键!)注意:每一次递归到的子树,都有左右子树,返回深度最大的!(左子树 or 右子树)!!!
return Math.max(rightcount,leftcount);
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/Mr_Chu/leetcode.git
git@gitee.com:Mr_Chu/leetcode.git
Mr_Chu
leetcode
leetcode
master

搜索帮助