Leetcode OJ平台上的MaximumDepthofBinaryTree题目用Java递归实现

上一篇 / 下一篇  2014-06-03 09:58:27 / 个人分类:学习

原题目如下:

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.


使用java递归实现如下:

/**
 * 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 )
            return maxDepth(root.right)+1;
        else if( root.right == null )
            return maxDepth(root.left)+1;
        else{
            int left = maxDepth(root.left) + 1;
            int right = maxDepth(root.right) + 1;
            if(left >= right)
                return left;
            else
                return right;
        }
    }
}

TAG:

 

评分:0

我来说两句

我的栏目

日历

« 2024-04-24  
 123456
78910111213
14151617181920
21222324252627
282930    

数据统计

  • 访问量: 17708
  • 日志数: 12
  • 建立时间: 2014-05-21
  • 更新时间: 2014-06-03

RSS订阅

Open Toolbar