题解 | #二叉树的最大深度#TOP28

思路:
1.递归 Math.max(getMaxHeight(root.left) + 1, getMaxHeight(root.right)+1)
2.记得之前的TOP26层序遍历吗?有多少层深度就是多少,所以直接采用队列,看有多少层就ok了

import java.util.*;

/*
 * public class TreeNode {
 *   int val = 0;
 *   TreeNode left = null;
 *   TreeNode right = null;
 * }
 */

public class Solution {
    /**
     * 
     * @param root TreeNode类 
     * @return int整型
     */
    public int maxDepth (TreeNode root) {
        // write code here
        
        //return getMaxHeight(root);
        return maxHeightDFS(root);
    }
    private int getMaxHeight(TreeNode root){
        if(root == null){
            return 0;
        }
        int left = getMaxHeight(root.left) + 1;
        int right = getMaxHeight(root.right) + 1;
        return Math.max(left, right);
    }
    private int maxHeightDFS(TreeNode root){
        if(root == null){
            return 0;
        }
        Queue<TreeNode> queue = new LinkedList<>();
        int res = 0;
        queue.add(root);
        while(!queue.isEmpty()){
            int size = queue.size();
            while(size -- > 0){
                TreeNode node = queue.poll();
                if(node.left != null){
                    queue.add(node.left);
                }
                if(node.right != null){
                    queue.add(node.right);
                }
            }
            res ++ ;
        }
        return res;
    }
}
面试必刷TOP101 文章被收录于专栏

面试必刷TOP101

全部评论

相关推荐

逆流河上万仙退:如果是能有面试的话应该简历没啥问题 争取表现好一点然后到岗时间实习天数往长了说 先看看能不能有offer
点赞 评论 收藏
分享
02-25 11:29
产品经理
牛客444597598号:兄弟 我只能说如果想找产品经理这种简历 基本就是毕业失业了 你这连实习都找不到的 简历跟产品经理一点都没有关系,你可以去搜搜产品的模版吧
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务