首页 > 其他 > 详细

Maximum Depth of Binary Tree

时间:2014-08-01 22:49:02      阅读:369      评论:0      收藏:0      [点我收藏+]

问题:二叉树的最深深度

class Solution
{
public:
    void dfs(TreeNode *root,int step,int &MAX)
    {
        if(root==NULL)
        {
            if(MAX<step) MAX=step;
            return ;
        }
        dfs(root->left,step+1);
        dfs(root->right,step+1);
    }
    int maxDepth(TreeNode *root)
    {
        int MAX=0;
        dfs(root,step,MAX);
        return MAX;
    }
};

 

class Solution {
public:
    int maxDepth(TreeNode *root) {
        if(root==NULL) return 0;
        int leftDepth=maxDepth(root->left);
        int rightDepth=maxDepth(root->right);
        return max(leftDepth,rightDepth)+1;
    }
};

  

Maximum Depth of Binary Tree,布布扣,bubuko.com

Maximum Depth of Binary Tree

原文:http://www.cnblogs.com/zsboy/p/3885811.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!