题解 | #二叉树的最大深度#

二叉树的最大深度

http://www.nowcoder.com/practice/8a2b2bf6c19b4f23a9bdb9b233eefa73

DFS 和 BFS都可以

import java.util.*;

/*
 * public class TreeNode {
 *   int val = 0;
 *   TreeNode left = null;
 *   TreeNode right = null;
 * }
 */

public class Solution {
    /**
     * 
     * @param root TreeNode类 
     * @return int整型
     */
    public int maxDepth (TreeNode root) {
        // write code here
        if(root == null){
            return 0;
        }
        Stack<TreeNode> s = new Stack<>();
        Stack<Integer> level = new Stack<>();
        s.push(root);
        level.push(1);
        int max = 0;
        while(!s.isEmpty()){
            TreeNode t = s.pop();
            int flag = level.pop();
            max = Math.max(max,flag);
            if(t.left != null){
                s.push(t.left);
                level.push(flag+1);
            }
            if(t.right != null){
                s.push(t.right);
                level.push(flag+1);
            }       
        }
        return max;
    }
}
全部评论

相关推荐

10-28 15:45
门头沟学院 C++
西南山:海康威视之前不是大规模裁员吗
点赞 评论 收藏
分享
把球:这个听过,你加了就会发现是字节的hr
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务