红桃J

用心写好每行完美的代码,远比写一堆更有价值

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

代码:

/**
 * 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 max;

 void deepSearch(TreeNode * root, int depth)
 {
     
     if (root != NULL)
     {
         deepSearch(root->left, depth + 1);
         deepSearch(root->right, depth + 1);
     }
     else
     {
         if (depth > max)
         {
             max = depth;
         }
     }
 }

 int maxDepth(struct TreeNode* root) 
 {
     if(root==NULL)
     return 0;
     max = 0;
     deepSearch(root, 0);
     return max;
 }
};

 

posted on 2015-05-11 22:36  红桃J  阅读(89)  评论(0编辑  收藏  举报