其他分享
首页 > 其他分享> > 二叉树的最大深度

二叉树的最大深度

作者:互联网

 

 

详细思路

dfs,需要root,求出该root树的最大深度   精确定义 dfs,参数root求出root树的最大深度,边界root空返回0,最后返回左右最大深度+1
class Solution {
public:
    int maxDepth(TreeNode* root) {
        if(!root)return 0;
        return 1+max(maxDepth(root->left),maxDepth(root->right));
    }
};

 

标签:return,最大,dfs,maxDepth,深度,root,求出,二叉树
来源: https://www.cnblogs.com/zhouzihong/p/15087615.html