15算法课程 104. Maximum Depth of Binary Tree

来源:互联网 发布:淘宝ashford代购水深 编辑:程序博客网 时间:2024/06/06 00:05

Given a binary tree, find its maximum depth.

The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.


solution:递归


code:

class Solution {public:    int maxDepth(TreeNode* root) {    return root == NULL ? 0 : max(maxDepth(root -> left), maxDepth(root -> right)) + 1;    }};