题解 | #二叉树的最大深度#
二叉树的最大深度
http://www.nowcoder.com/practice/8a2b2bf6c19b4f23a9bdb9b233eefa73
如果root节点为空则返回0,否则递归求左右孩子的高度,求出以后求两者的较大者并且深度加1
/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* };
*/
class Solution {
public:
/**
*
* @param root TreeNode类
* @return int整型
*/
int maxDepth(TreeNode* root) {
// write code here
return root == NULL ? 0 : 1+max(maxDepth(root->left), maxDepth(root->right));
}
};
阿里云成长空间 747人发布