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

104. Maximum Depth of Binary Tree

时间:2018-03-10 14:07:02      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:binary   str   script   public   leetcode   new   int   treenode   链接   

原题链接:https://leetcode.com/problems/maximum-depth-of-binary-tree/description/
这道题目级别为“Easy”,也确实是简单!
不废话,直接使用递归实现深度优先搜索即可:

/**
 * Created by clearbug on 2018/2/26.
 */
public class Solution {

    static class TreeNode {
        int val;
        TreeNode left;
        TreeNode right;

        public TreeNode(int val) {
            this.val = val;
        }
    }

    public static void main(String[] args) {
        TreeNode root = new TreeNode(1);

        TreeNode rootLeft = new TreeNode(2);
        TreeNode rootRight = new TreeNode(3);
        root.left = rootLeft;
        root.right = rootRight;

        TreeNode leftLeft = new TreeNode(3);
        TreeNode leftRight = null;
        rootLeft.left = leftLeft;
        rootLeft.right = leftRight;

        TreeNode rightLeft = new TreeNode(2);
        TreeNode rightRight = null;
        rootRight.left = rightLeft;
        rootRight.right = rightRight;

        Solution s = new Solution();
        System.out.println(s.maxDepth(root));
    }

    public int maxDepth(TreeNode root) {
        if (root == null) {
            return 0;
        }
        return dfs(root, 1);
    }

    public int dfs(TreeNode node, int currentDepth) {

        int leftDepth = currentDepth, rightDepth = currentDepth;
        if (node.left != null) {
            leftDepth = dfs(node.left, currentDepth + 1);
        }
        if (node.right != null) {
            rightDepth = dfs(node.right, currentDepth + 1);
        }

        return leftDepth > rightDepth ?
                (leftDepth > currentDepth ? leftDepth : currentDepth) :
                (rightDepth > currentDepth ? rightDepth : currentDepth);
    }
}

104. Maximum Depth of Binary Tree

标签:binary   str   script   public   leetcode   new   int   treenode   链接   

原文地址:https://www.cnblogs.com/optor/p/8538637.html

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