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

LF.60.Height Of Binary Tree

时间:2018-03-27 14:31:32      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:you   public   examples   log   ==   mat   math   nod   return   

 

Find the height of binary tree.

Examples:

        5

      /    
    3        8

  /   \        
1      4        11

The height of above binary tree is 3.

 

 1 public class Solution {
 2   public int findHeight(TreeNode root) {
 3     // Write your solution here
 4     if (root == null) {
 5         return 0;
 6     }
 7     int leftRes = findHeight(root.left);
 8     int rightRes = findHeight(root.right) ;
 9     return Math.max(leftRes, rightRes) + 1 ;
10   }
11 }

 

LF.60.Height Of Binary Tree

标签:you   public   examples   log   ==   mat   math   nod   return   

原文地址:https://www.cnblogs.com/davidnyc/p/8656480.html

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