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

二叉树的深度

时间:2016-04-17 14:31:55      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

 

class Solution {
public:
    int Tree(TreeNode* pRoot)
        {
       if(pRoot==NULL)
           return 0;
        if(pRoot->left==NULL&&pRoot->right==NULL)
            return 1;
        int dep=0;
        return Tree(pRoot->left)>Tree(pRoot->right)? Tree(pRoot->left)+1:Tree(pRoot->right)+1;
        
    }
    int TreeDepth(TreeNode* pRoot)
    {
       if(pRoot==NULL)
           return 0;
        return Tree(pRoot);
    }
};

 

二叉树的深度

标签:

原文地址:http://www.cnblogs.com/daocaorenblog/p/5400812.html

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