AcWing 71. 二叉树的深度
原题链接
简单
作者:
ziwei
,
2021-04-06 08:39:40
,
所有人可见
,
阅读 385
输入一棵二叉树的根结点,求该树的深度。
从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度。
样例
输入:二叉树[8, 12, 2, null, null, 6, 4, null, null, null, null]如下图所示:
8
/ \
12 2
/ \
6 4
输出:3
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int treeDepth(TreeNode* root) {
//if(!root) return 0;----将其合并在三元表达式中
return root?max(treeDepth(root->left),treeDepth(root->right))+1:0;
}
};
对于树相关的题目,直接用定义推导就可以,因为树的定义就是根据递归而来的,因此我们在考虑树相关的问题的时,我们无脑使用递归就行了,所谓递归就是从根节点的左右孩子作为递归入口进行递归,我们直接可以找到递归出口就是树不在具有左右孩子,