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

[Leetcode] 104. Maximum Depth of Binary Tree

时间:2019-12-08 12:15:18      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:max   current   tree   else   div   com   bin   image   span   

 

技术图片

 

 

 1 int depth = 0;
 2     int currentMaxDepth = 0;
 3     public int maxDepth(TreeNode root) {
 4         if(root == null){
 5             return 0;
 6         }
 7         
 8         int leftDepth = 1;
 9         int rightDepth = 1;
10         
11         leftDepth += maxDepth(root.left);
12         
13         rightDepth += maxDepth(root.right);
14         
15         if(leftDepth > rightDepth){
16                 return leftDepth;
17             }
18         else{
19             return rightDepth;
20         }
21     }

 

[Leetcode] 104. Maximum Depth of Binary Tree

标签:max   current   tree   else   div   com   bin   image   span   

原文地址:https://www.cnblogs.com/seako/p/12005136.html

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