题解 | #二叉树的最大深度#

二叉树的最大深度

https://www.nowcoder.com/practice/8a2b2bf6c19b4f23a9bdb9b233eefa73

/**
 * struct TreeNode {
 *	int val;
 *	struct TreeNode *left;
 *	struct TreeNode *right;
 * };
 */
/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param root TreeNode类 
 * @return int整型
 */
int MAX=0;
int depth=0;
int preorder(struct TreeNode* root){
    depth++;
    if(root==NULL){
        depth--; 
        return 0;
        
    }else{
        if(MAX<depth){
            MAX=depth;
        }
        preorder(root->left);
        preorder(root->right); 
        
    }
    depth--; 
    return 0;
}
int maxDepth(struct TreeNode* root ) {
    // write code here
    preorder(root);
    return MAX;
}

全部评论

相关推荐

勤劳的香菇求被捞求offer:满帮笔试都不给我发 似乎被卡本了
投递满帮集团等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务