Skip to content

Latest commit

 

History

History
14 lines (14 loc) · 337 Bytes

104.md

File metadata and controls

14 lines (14 loc) · 337 Bytes

#104. Maximum Depth of Binary Tree 题目链接

int maxDepth(struct TreeNode* root) {
    if(root)
    {
        int left = maxDepth(root->left);
        int right = maxDepth(root->right);
        return left>right?left+1:right+1;
    }
    else
        return 0;
}