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

Leetcode题目104.二叉树的最大深度(DFS+BFS简单)

时间:2019-11-12 11:06:08      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:init   highlight   static   bsp   sem   i++   stat   一个   efi   

题目描述:

给定一个二叉树,找出其最大深度。

二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。

说明: 叶子节点是指没有子节点的节点。

示例:
给定二叉树 [3,9,20,null,null,15,7],

    3
   /   9  20
    /     15   7
返回它的最大深度 3 。

思路分析:递归(二叉树最大深度,等于左右子树的最大深度+1)

代码实现:

一、深度优先比遍历(DFS)

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {

    public static int maxDepth(TreeNode root) {

        if (root == null) {
            return 0;
        }
        return Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
    }
}

二、层次遍历(BFS,广度优先)

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {

       public static int maxDepth(TreeNode root) {

        if (root == null) {
            return 0;
        }
        Deque<TreeNode> deque = new LinkedList<>();
        deque.add(root);

        int res = 0;
        while (!deque.isEmpty()) {
            res++;
            int cnt = deque.size();
            for (int i = 0; i < cnt; i++) {
                TreeNode pNode = deque.poll();
                if (pNode.left != null) {
                    deque.add(pNode.left);
                }
                if (pNode.right != null) {
                    deque.add(pNode.right);
                }
            }
        }
        return res;
    }
}

时间复杂度:O(N)

空间复杂度:O(N)

Leetcode题目104.二叉树的最大深度(DFS+BFS简单)

标签:init   highlight   static   bsp   sem   i++   stat   一个   efi   

原文地址:https://www.cnblogs.com/ysw-go/p/11840084.html

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