码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode刷题记录

时间:2020-04-21 00:21:22      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:efi   mamicode   平衡二叉树   init   null   vat   基础上   tree node   span   

104.二叉树的最大深度

/**
 * 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+左右子树中数值更大的深度

技术图片

 

110.平衡二叉树

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);
    }
}

上一个问题的进阶版,只需要在上一题的基础上判定两个子树深度之差的绝对值是否大于一。

 

leetcode刷题记录

标签:efi   mamicode   平衡二叉树   init   null   vat   基础上   tree node   span   

原文地址:https://www.cnblogs.com/xiuzhublog/p/12741185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!