题解 | #牛群排列的最大深度#
牛群排列的最大深度
https://www.nowcoder.com/practice/b3c6383859a142e9a10ab740d8baed88
知识点:
二叉树/递归
分析:
求二叉树最大深度,使用递归;
记得+1;
编程语言:
C++
完整代码:
int maxDepth(TreeNode* root) { if(root == nullptr) return 0; return max(maxDepth(root->left),maxDepth(root->right)) + 1; }