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

Leetcode Maximum Depth of Binary Tree

时间:2015-09-14 01:55:44      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

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.


 解题思路:

方法一: 递归解法

方法二: BFS, 求layer 的数目。


Java code:

递归解法:

public int maxDepth(TreeNode root) {
        //use DFS recursive
        if(root == null) {
            return 0;
        }
        int leftmax = maxDepth(root.left);
        int rightmax = maxDepth(root.right);
        return Math.max(leftmax, rightmax) + 1;   
    }

BFS, 求layer 的数目

public int maxDepth(TreeNode root) {
        //use BFS
        if(root == null){
            return 0;
        }
        int depth = 0;
        LinkedList<TreeNode> queue = new LinkedList<TreeNode>();
        queue.add(root);
        int curNum = 1; //num of node left in current level
        int nextNum = 0; // num of nodes in next level
        while(!queue.isEmpty()) {
            TreeNode n = queue.poll(); //Retrieves and removes the head (first element) of this list.
            curNum--;
            if(n.left != null) {
                queue.add (n.left);
                nextNum++;
            }
            if(n.right != null) {
                queue.add(n.right);
                nextNum++;
            }
            if(curNum == 0) {
                curNum = nextNum;
                nextNum = 0;
                depth++;
            }
        }
        return depth;
    }

Reference:

1. http://www.cnblogs.com/springfor/p/3879619.html


 

Leetcode Maximum Depth of Binary Tree

标签:

原文地址:http://www.cnblogs.com/anne-vista/p/4805971.html

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