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

LeetCode 刷题之二:寻找二叉树的最大深度

时间:2014-12-12 23:40:13      阅读:374      评论:0      收藏:0      [点我收藏+]

标签:二叉树   leetcode   递归   java算法   

题目为:

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.

阶梯思路:对于这种题目最简单的方法就是递归操作了

代码为:

/**
 * Definition for binary tree
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public int maxDepth(TreeNode root) {
        if(root == null)
            return 0;
       else if(root.left == null && root.right == null)
            return 1;
       else
            {
                int leftDepth= maxDepth(root.left);
       			int rightDepth = maxDepth(root.right);
                if(leftDepth > rightDepth)
                    return leftDepth +1;
                else
                    return rightDepth +1;
             }
       
    }
}



LeetCode 刷题之二:寻找二叉树的最大深度

标签:二叉树   leetcode   递归   java算法   

原文地址:http://blog.csdn.net/longshengguoji/article/details/41901851

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