码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 104. Maximum Depth of Binary Tree

时间:2017-04-26 15:49:09      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:push   nod   code   递归   img   maximum   bsp   循环   images   

题目描述:

技术分享

递归

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

循环

class Solution {
public:
    int maxDepth(TreeNode* root) {
        if(root == NULL)
            return 0;
        queue<TreeNode *>  qu;
        int ret = 0;
        qu.push(root);
        while(!qu.empty()){
            ret++;
            for(int i = 0,n = qu.size() ; i < n; i++){
                TreeNode *tmp = qu.front();
                qu.pop();
                if(tmp->left != NULL)
                    qu.push(tmp->left);
                if(tmp->right != NULL)
                    qu.push(tmp->right);
            }
        }
        return ret;
    }
};

 

leetcode 104. Maximum Depth of Binary Tree

标签:push   nod   code   递归   img   maximum   bsp   循环   images   

原文地址:http://www.cnblogs.com/strongYaYa/p/6768424.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!