leetcode-104-树题-二叉树的最大深度 发表于 2020-03-21 | 分类于 数据结构与算法 题目 解法123456789101112131415161718/** * 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 maxDepth(TreeNode* root) { if(!root) return 0; if(!root->left && !root->right) return 1; return max(maxDepth(root->left), maxDepth(root->right)) + 1; }};