[刷题] 104 Maximum Depth of Binary Tree
要求
- 求一棵二叉树的最高深度
思路
- 递归地求左右子树的最高深度
实现
1 Definition for a binary tree node. 2 struct TreeNode { 3 int val; 4 TreeNode *left; 5 TreeNode *right; 6 TreeNode(int x) : val(x), left(NULL), right(NULL) {} 7 }; 8 9 class Solution { 10 public: 11 int maxDepth(TreeNode* root) { 12 13 if( root == NULL ) 14 return 0; 15 16 return max( maxDepth( root->left ),maxDepth( root->right )) + 1; 17 } 18 };
相关
- 111 Minimum Depth of Binary Tree
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步