博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Leetcode 104]求二叉树的深度Depth of BinaryTree
阅读量:5280 次
发布时间:2019-06-14

本文共 1015 字,大约阅读时间需要 3 分钟。

【题目】

Given a binary tree, find its maximum depth.

The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.

Note: A leaf is a node with no children.

Example:

Given binary tree [3,9,20,null,null,15,7],

3   / \  9  20    /  \   15   7

return its depth = 3.

 

【思路】

递归,1+Math.max(maxDepth(root.left),maxDepth(root.right));

 

【解答】

class Solution {

    public int maxDepth(TreeNode root) {

        if(root==null)

            return 0;

        return 1+Math.max(maxDepth(root.left),maxDepth(root.right));

    }

}

 

【其他定义】

 * Definition for a binary tree node.

 * public class TreeNode {

 *     int val;

 *     TreeNode left;

 *     TreeNode right;

 *     TreeNode(int x) { val = x; }

 * }

/** * 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 1+Math.max(maxDepth(root.left),maxDepth(root.right));    }    }

转载于:https://www.cnblogs.com/inku/p/9854535.html

你可能感兴趣的文章
解决SpringSecurity阻止ajax的POST和PUT请求,导致403Forbidden的问题
查看>>
WPF样式之画刷结合样式
查看>>
DIV的高度自动拉伸(height属性)…
查看>>
Pastoralism in Ancient Inner Eurasia
查看>>
Servlet 的认识
查看>>
Bitmap重要属性整理Bitmap
查看>>
【听课笔记】算法导论2
查看>>
解决弹出层被FLASH覆盖(Flash置底)
查看>>
java反射工具类
查看>>
grep、awk、sed的巩固练习
查看>>
fork 创建进程的过程分析
查看>>
js求时间差,两个日期月份差
查看>>
解决chkconfig设置开机启动时出现missing LSB的错误
查看>>
《HP大中华区总裁孙振耀退休感言》
查看>>
prim算法java版
查看>>
Unity 着色器
查看>>
夺命雷公狗jquery---29滑动效果
查看>>
WPScan扫描Wordpress漏洞
查看>>
Xcode 断点的使用
查看>>
Logger Rate Limiter 十秒限时计数器
查看>>