110:平衡二叉树
This commit is contained in:
parent
3afa3838aa
commit
4eaa41837e
89
src/main/java/leetcode/editor/cn/BalancedBinaryTree.java
Normal file
89
src/main/java/leetcode/editor/cn/BalancedBinaryTree.java
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
//给定一个二叉树,判断它是否是高度平衡的二叉树。
|
||||||
|
//
|
||||||
|
// 本题中,一棵高度平衡二叉树定义为:
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过 1 。
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 示例 1:
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//输入:root = [3,9,20,null,null,15,7]
|
||||||
|
//输出:true
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 示例 2:
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//输入:root = [1,2,2,3,3,null,null,4,4]
|
||||||
|
//输出:false
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 示例 3:
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//输入:root = []
|
||||||
|
//输出:true
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 提示:
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 树中的节点数在范围 [0, 5000] 内
|
||||||
|
// -104 <= Node.val <= 104
|
||||||
|
//
|
||||||
|
// Related Topics 树 深度优先搜索 二叉树
|
||||||
|
// 👍 713 👎 0
|
||||||
|
|
||||||
|
package leetcode.editor.cn;
|
||||||
|
|
||||||
|
import com.code.leet.entiy.TreeNode;
|
||||||
|
|
||||||
|
//110:平衡二叉树
|
||||||
|
public class BalancedBinaryTree{
|
||||||
|
public static void main(String[] args) {
|
||||||
|
//测试代码
|
||||||
|
Solution solution = new BalancedBinaryTree().new Solution();
|
||||||
|
}
|
||||||
|
//力扣代码
|
||||||
|
//leetcode submit region begin(Prohibit modification and deletion)
|
||||||
|
/**
|
||||||
|
* Definition for a binary tree node.
|
||||||
|
* 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 {
|
||||||
|
public boolean isBalanced(TreeNode root) {
|
||||||
|
if (root == null) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return Math.abs(getHeight(root.left) - getHeight(root.right)) <= 1 && isBalanced(root.left) && isBalanced(root.right);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getHeight(TreeNode root) {
|
||||||
|
if (root == null) {
|
||||||
|
return 0;
|
||||||
|
} else {
|
||||||
|
return Math.max(getHeight(root.left), getHeight(root.right)) + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//leetcode submit region end(Prohibit modification and deletion)
|
||||||
|
|
||||||
|
}
|
40
src/main/java/leetcode/editor/cn/BalancedBinaryTree.md
Normal file
40
src/main/java/leetcode/editor/cn/BalancedBinaryTree.md
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<p>给定一个二叉树,判断它是否是高度平衡的二叉树。</p>
|
||||||
|
|
||||||
|
<p>本题中,一棵高度平衡二叉树定义为:</p>
|
||||||
|
|
||||||
|
<blockquote>
|
||||||
|
<p>一个二叉树<em>每个节点 </em>的左右两个子树的高度差的绝对值不超过 1 。</p>
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
|
<p><strong>示例 1:</strong></p>
|
||||||
|
<img alt="" src="https://assets.leetcode.com/uploads/2020/10/06/balance_1.jpg" style="width: 342px; height: 221px;" />
|
||||||
|
<pre>
|
||||||
|
<strong>输入:</strong>root = [3,9,20,null,null,15,7]
|
||||||
|
<strong>输出:</strong>true
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 2:</strong></p>
|
||||||
|
<img alt="" src="https://assets.leetcode.com/uploads/2020/10/06/balance_2.jpg" style="width: 452px; height: 301px;" />
|
||||||
|
<pre>
|
||||||
|
<strong>输入:</strong>root = [1,2,2,3,3,null,null,4,4]
|
||||||
|
<strong>输出:</strong>false
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 3:</strong></p>
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
<strong>输入:</strong>root = []
|
||||||
|
<strong>输出:</strong>true
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
|
<p><strong>提示:</strong></p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>树中的节点数在范围 <code>[0, 5000]</code> 内</li>
|
||||||
|
<li><code>-10<sup>4</sup> <= Node.val <= 10<sup>4</sup></code></li>
|
||||||
|
</ul>
|
||||||
|
<div><div>Related Topics</div><div><li>树</li><li>深度优先搜索</li><li>二叉树</li></div></div>\n<div><li>👍 713</li><li>👎 0</li></div>
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user