国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

LeetCode 104 Maximum Depth of Binary Tree 二叉樹最大深度

PiscesYE / 2243人閱讀

LeetCode 104 Maximum Depth of Binary Tree
難度:Easy

題目描述:
找到一顆二叉樹的最深深度。
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.

Note: A leaf is a node with no children.

Example:

Given binary tree [3,9,20,null,null,15,7],

    3
   / 
  9  20
    /  
   15   7

return its depth = 3.

解題思路:
Solution 1:
解二叉樹的題目一般如果難度為easy,則要求iterative和recursive都會寫,二叉樹的最深深度是左子樹和右子樹的Max深度,根據(jù)這一特性,我們自底向上,時(shí)間復(fù)雜度O(n), Space O(1), 但因?yàn)槭沁f歸,所以會占用stack,recursive的寫法如下:

public int maxDepth(TreeNode root) {
        if (root == null) {
            return 0;
        }
        //get the left and right depth
        int leftDep = maxDepth(root.left);
        int rightDep = maxDepth(root.right);
        return 1 + Math.max(leftDep, rightDep);
    }

解題思路:
Solution 2:
使用BFS方法iterative使用一個(gè)Queue,每往下一層都加1,最后拿到最深深度。
時(shí)間:O(n), 空間 O(n)

    public int maxDepth(TreeNode root) {
        //iterative
        if (root == null) return 0;
        Queue q = new LinkedList<>();
        q.offer(root);
        int dep = 0;
        while(!q.isEmpty()) {
            dep++;
            int size = q.size();
            for(int i = 0; i < size; i++) {
                TreeNode now = q.poll();
                if (now.left != null) q.offer(now.left);
                if (now.right != null) q.offer(now.right);
            }

        }
        return dep;
        
    }

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/71797.html

相關(guān)文章

  • LeetCode 之 JavaScript 解答第104題 —— 叉樹最大深度

    摘要:小鹿題目二叉樹的最大深度給定一個(gè)二叉樹,找出其最大深度。二叉樹的深度為根節(jié)點(diǎn)到最遠(yuǎn)葉子節(jié)點(diǎn)的最長路徑上的節(jié)點(diǎn)數(shù)。求二叉樹的深度,必然要用到遞歸來解決。分別遞歸左右子樹。 Time:2019/4/22Title: Maximum Depth of Binary TreeDifficulty: MediumAuthor:小鹿 題目:Maximum Depth of Binary Tre...

    boredream 評論0 收藏0
  • 前端 | 每天一個(gè) LeetCode

    摘要:在線網(wǎng)站地址我的微信公眾號完整題目列表從年月日起,每天更新一題,順序從易到難,目前已更新個(gè)題。這是項(xiàng)目地址歡迎一起交流學(xué)習(xí)。 這篇文章記錄我練習(xí)的 LeetCode 題目,語言 JavaScript。 在線網(wǎng)站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公眾號: showImg(htt...

    張漢慶 評論0 收藏0
  • LeetCode 攻略 - 2019 年 7 月上半月匯總(55 題攻略)

    摘要:微信公眾號記錄截圖記錄截圖目前關(guān)于這塊算法與數(shù)據(jù)結(jié)構(gòu)的安排前。已攻略返回目錄目前已攻略篇文章。會根據(jù)題解以及留言內(nèi)容,進(jìn)行補(bǔ)充,并添加上提供題解的小伙伴的昵稱和地址。本許可協(xié)議授權(quán)之外的使用權(quán)限可以從處獲得。 Create by jsliang on 2019-07-15 11:54:45 Recently revised in 2019-07-15 15:25:25 一 目錄 不...

    warmcheng 評論0 收藏0
  • LeetCode 攻略 - 2019 年 7 月下半月匯總(100 題攻略)

    摘要:月下半旬攻略道題,目前已攻略題。目前簡單難度攻略已經(jīng)到題,所以后面會調(diào)整自己,在刷算法與數(shù)據(jù)結(jié)構(gòu)的同時(shí),攻略中等難度的題目。 Create by jsliang on 2019-07-30 16:15:37 Recently revised in 2019-07-30 17:04:20 7 月下半旬攻略 45 道題,目前已攻略 100 題。 一 目錄 不折騰的前端,和咸魚有什么區(qū)別...

    tain335 評論0 收藏0
  • Leetcode PHP題解--D41 104. Maximum Depth of Binary T

    摘要:題目鏈接題目分析返回給定的二叉樹有多少層。思路每下一級,層樹,并記錄到類屬性中。并判斷是否大于已知最深層樹。最終代碼若覺得本文章對你有用,歡迎用愛發(fā)電資助。 104. Maximum Depth of Binary Tree 題目鏈接 104. Maximum Depth of Binary Tree 題目分析 返回給定的二叉樹有多少層。 思路 每下一級,層樹+1,并記錄到類屬性lev...

    LMou 評論0 收藏0

發(fā)表評論

0條評論

PiscesYE

|高級講師

TA的文章

閱讀更多
最新活動(dòng)
閱讀需要支付1元查看
<