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

二叉树的最大深度

https://www.nowcoder.com/practice/8a2b2bf6c19b4f23a9bdb9b233eefa73

package com.hhdd;

import com.hhdd.数据结构.树.TreeNode;

/**
 * @Author huanghedidi
 * @Date 2024/3/20 21:16
 */
public class 二叉树的最大深度 {
    static int res = 0;

    public static int maxDepth(TreeNode root) {

        int curDepth = 0;
        traverse(root, curDepth);
        return res;
        // write code here
    }

    public static void traverse(TreeNode node, int curDepth) {
        if (node == null) {
            return;
        }
        curDepth++;
        if (curDepth > res) {
            res = curDepth;
        }
        traverse(node.left, curDepth);
        traverse(node.right, curDepth);
    }

}

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 19:05
点赞 评论 收藏
分享
头像
10-09 19:35
门头沟学院 Java
洛必不可达:java的竞争激烈程度是其他任何岗位的10到20倍
点赞 评论 收藏
分享
11-18 09:44
Java
小白也想要offer:简历别放洋屁,搞不还还放错了,当然你投外企除外,以上纯属个人观点
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务