标签:efi mamicode 平衡二叉树 init null vat 基础上 tree node span
/** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ class Solution { public int maxDepth(TreeNode root) { if(root==null) return 0; return Math.max(maxDepth(root.left),maxDepth(root.right))+1; } }
将问题转化为二叉树的深度等于1+左右子树中数值更大的深度
class Solution { private boolean tag = true; public boolean isBalanced(TreeNode root) { maxDepth(root); return tag; } public int maxDepth(TreeNode root){ if(root==null)return 0; int left=maxDepth(root.left); int right=maxDepth(root.right); if(Math.abs(left-right)>1){ tag=false; } return 1+Math.max(left,right); } }
上一个问题的进阶版,只需要在上一题的基础上判定两个子树深度之差的绝对值是否大于一。
标签:efi mamicode 平衡二叉树 init null vat 基础上 tree node span
原文地址:https://www.cnblogs.com/xiuzhublog/p/12741185.html