现在的位置: 首页 > 综合 > 正文

LeetCode OJ –问题与解答 Maximum Depth of Binary Tree

2014年04月05日 ⁄ 综合 ⁄ 共 334字 ⁄ 字号 评论关闭
题目


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.

找到树的最大的深度。


思路


 二叉树的基础题目。两点:a 递归 b 叶子节点处理


思路


public class Solution {
    public int maxDepth(TreeNode root) {
        if(root==null){
            return 0;
        }
        int left = maxDepth(root.left);
        int right = maxDepth(root.right);
        return Math.max(left,right)+1;
    }
}

抱歉!评论已关闭.