Java 服务端架构
Spring、Netty、日志框架与工程化实战
🎨 视觉封面LeetCode Balanced Binary Tree
Problem
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.
即判断一个二叉树是不是平衡树。平衡的标准就是任何节点的左右子树的高度差不大于1。
Java 实现
package com.coderli.leetcode.algorithms.easy;
/**
* Given a binary tree, determine if it is height-balanced.
* <p>
* 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.
*
* @author OneCoder 2017-11-23 22:05
*/
public class BalancedBinaryTree {
public static void main(String[] args) {
BalancedBinaryTree balancedBinaryTree = new BalancedBinaryTree();
TreeNode tree = balancedBinaryTree.new TreeNode(1);
TreeNode subNodeLeft = balancedBinaryTree.new TreeNode(2);
TreeNode subNodeRight = balancedBinaryTree.new TreeNode(2);
subNodeLeft.left = balancedBinaryTree.new TreeNode(3);
subNodeLeft.right = balancedBinaryTree.new TreeNode(4);
subNodeRight.left = balancedBinaryTree.new TreeNode(4);
subNodeRight.right = balancedBinaryTree.new TreeNode(3);
tree.left = subNodeLeft;
tree.right = subNodeRight;
System.out.println(balancedBinaryTree.isBalanced(tree));
}
public boolean isBalanced(TreeNode root) {
if (root == null) {
return true;
}
int leftSubTreeHeight = treeHeight(root.left);
int rightSubTreeHeight = treeHeight(root.right);
int differ = leftSubTreeHeight - rightSubTreeHeight;
if ( differ > 1 || differ < -1) {
return false;
}
return isBalanced(root.left) && isBalanced(root.right);
}
private int treeHeight(TreeNode tree) {
if (tree == null) {
return 0;
}
int leftSubHeight = treeHeight(tree.left);
int rightSubHeight = treeHeight(tree.right);
return leftSubHeight >= rightSubHeight ? leftSubHeight + 1: rightSubHeight + 1;
}
public class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) {
val = x;
}
}
}
分析
还是递归处理。一个递归计算高度。另一个递归计算每个节点的高度,并进行判断。
所有代码开源上传至 GitHub:yummy-code 仓库 · GESP 专题站:GESP WIKI
欢迎加入:C++ GESP/CSP 考级答疑群(688906745) 与 Java/Python交流群(982860385),点击可直接加群。
猜你想读 · 相关文章推荐
LeetCode Palindrome Number
Problem Determine whether an integer is a palindrome. Do this without extra space. 即返回一个数是否是回数。例如:1,1221,12321是回数,负数不是回数。题目特别提醒,不要使用额外的空间,即不要考虑转换成String来处理。 <!-...
LeetCode Reverse Integer
Problem Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 Note: The input is assumed to be a 32-bit signed integer. Yo...
LeetCode Roman to Integer
Problem Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. 即将罗马数字1-3999转换成对应的整数。罗马数字规则见wiki:[罗马数字规则][1]...
OneCoder (lihongzheshuai)
一个中年人的自留地,记录学习 C++、GESP/NOI、Java、Python 与算法架构的心得体会。本站唯一网址:coderli.com