当前位置:   article > 正文

力扣104. 二叉树的最大深度(两种DFS思路)

力扣104. 二叉树的最大深度(两种DFS思路)

Problem: 104. 二叉树的最大深度

题目描述

在这里插入图片描述在这里插入图片描述

思路和解法

在涉及到二叉树的递归时,大多数时候均是会用到二叉树的前、中、后序遍历,而这三种遍历的方式其实也是对应了不同时间对当前树中节点的处理

思路1:先序加后序

我们维护一个全局的int变量res用于记录最大的深度,维护int变量depth用于记录每个节点当前子树的深度,具体的先序到达一个节点是depth++,后序退出一个节点是depth–;到达根节点时更新res

思路2:后序遍历分解问题

我们每次统计当前节点的左右子树的而最大深度,由于要获取左右子树的最大深度,所以要在退出一个节点时(即要利用后序遍历)去获取当前节点的最大深度,最后返回到获取整个二叉树的最大深度

复杂度

思路1:

  • 时间复杂度:

O ( n ) O(n) O(n);其中 n n n为二叉树的节点的个数

  • 空间复杂度:

O ( n ) O(n) O(n)

思路2:

  • 时间复杂度:

O ( n ) O(n) O(n)

  • 空间复杂度:

O ( n ) O(n) O(n)

Code

思路1:


/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    int res = 0;
    int depth = 0;

    /**
     * Maximum Depth of Binary Tree
     *
     * @param root The root of binary tree
     * @return int
     */
    public int maxDepth(TreeNode root) {
        traverse(root);
        return res;
    }

    /**
     * DFS concrete implementation function
     *
     * @param root The root of binary tree
     */
    private void traverse(TreeNode root) {
        if (root == null) {
            res = Math.max(res, depth);
            return;
        }
        depth++;
        traverse(root.left);
        traverse(root.right);
        depth--;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47

思路2:


/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    /**
     * Maximum Depth of Binary Tree
     *
     * @param root The root of binary tree
     * @return int
     */
    public int maxDepth(TreeNode root) {
        if (root == null) {
            return 0;
        }
        int leftMax = maxDepth(root.left);
        int rightMax = maxDepth(root.right);

        int res = Math.max(leftMax, rightMax) + 1;
        return res;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/618193
推荐阅读
相关标签
  

闽ICP备14008679号