[leetcode]Maximum Depth of Binary Tree

来源:互联网 发布:slackware 网络配置 编辑:程序博客网 时间:2024/06/03 21:07

Maximum Depth of Binary Tree

 

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.

解题思路 : 后续遍历二叉树的应用

/** * Definition for binary tree * struct TreeNode { *     int val; *     TreeNode *left; *     TreeNode *right; *     TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public:    int maxDepth(TreeNode *root) {        // Note: The Solution object is instantiated only once and is reused by each test case.        if(root == NULL) return 0;        int lh = maxDepth(root->left);        int rh = maxDepth(root->right);                int h;        h = lh > rh ? lh + 1 : rh + 1;        return h;    }};

0 0
原创粉丝点击