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

面试39---二叉树的深度

时间:2018-05-09 14:56:24      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:nod   interview   odi   int   --   leetcode   面试   isp   gif   

题目链接

求解二叉树的深度,延伸可见leetcode110题。

法一:dfs。

技术分享图片
1     private int TreeDepth(TreeNode root) {
2         if(root == null) {
3             return 0;
4         }
5         int l = TreeDepth(root.left);
6         int r = TreeDepth(root.right);
7         return (l > r) ? (l + 1) : (r + 1);
8     }
View Code

 

面试39---二叉树的深度

标签:nod   interview   odi   int   --   leetcode   面试   isp   gif   

原文地址:https://www.cnblogs.com/cing/p/9013334.html

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