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

Maximum Depth of Binary Tree

时间:2015-03-10 23:06:11      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

求二叉树的最大深度

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     struct TreeNode *left;
 *     struct TreeNode *right;
  * };
 */
 int max(int a,int b){
     return a>b?a:b;
 }
int maxDepth(struct TreeNode *root) {
    if(!root) return 0;
    if(!root->left && !root->right) return 1;
    return max(maxDepth(root->left),maxDepth(root->right))+1;
}

 

Maximum Depth of Binary Tree

标签:

原文地址:http://www.cnblogs.com/llei1573/p/4328620.html

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