日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

python 最大深度最小深度 LeetCode 104,111

系統 1834 0

python 最大深度最小深度 LeetCode 104,111

python 最大深度最小深度 LeetCode 104,111_第1張圖片
python 最大深度最小深度 LeetCode 104,111_第2張圖片
解法:
1、BFS:尋找最大深度的時候,很容易想到就是,可以直接進行層次遍歷,當無法在進行遍歷下去的時候就是最深的深度;當尋找最小深度的時候,對每一個節點檢查它是否是葉子節點,也就是檢查它是否有左子樹和右子樹。

2、DFS:每次進行遍歷的時候,要判斷是否是葉子節點,更新max深度的值和min深度的值。


BFS版本

            
              
                # Definition for a binary tree node.
              
              
                # class TreeNode(object):
              
              
                #     def __init__(self, x):
              
              
                #         self.val = x
              
              
                #         self.left = None
              
              
                #         self.right = None
              
              
                class
              
              
                Solution
              
              
                (
              
              
                object
              
              
                )
              
              
                :
              
              
                def
              
              
                maxDepth
              
              
                (
              
              self
              
                ,
              
               root
              
                )
              
              
                :
              
              
                """
        :type root: TreeNode
        :rtype: int
        """
              
              
                if
              
              
                not
              
               root
              
                :
              
              
                return
              
              
                0
              
              
                if
              
              
                not
              
               root
              
                .
              
              right 
              
                and
              
              
                not
              
               root
              
                .
              
              left
              
                :
              
              
                return
              
              
                1
              
              
        cur 
              
                =
              
              
                [
              
              root
              
                ]
              
              
        maxnum 
              
                =
              
              
                0
              
              
                while
              
               cur
              
                :
              
              
            nextstack
              
                ,
              
              tmp 
              
                =
              
              
                [
              
              
                ]
              
              
                ,
              
              
                [
              
              
                ]
              
              
                for
              
               node 
              
                in
              
               cur
              
                :
              
              
                tmp
              
                .
              
              append
              
                (
              
              node
              
                .
              
              val
              
                )
              
              
                if
              
               node
              
                .
              
              left
              
                :
              
              
                    nextstack
              
                .
              
              append
              
                (
              
              node
              
                .
              
              left
              
                )
              
              
                if
              
               node
              
                .
              
              right
              
                :
              
              
                    nextstack
              
                .
              
              append
              
                (
              
              node
              
                .
              
              right
              
                )
              
              
            cur 
              
                =
              
               nextstack
            maxnum 
              
                +=
              
              
                1
              
              
                return
              
               maxnum

            
          
            
              
                # Definition for a binary tree node.
              
              
                # class TreeNode(object):
              
              
                #     def __init__(self, x):
              
              
                #         self.val = x
              
              
                #         self.left = None
              
              
                #         self.right = None
              
              
                class
              
              
                Solution
              
              
                (
              
              
                object
              
              
                )
              
              
                :
              
              
                def
              
              
                minDepth
              
              
                (
              
              self
              
                ,
              
               root
              
                )
              
              
                :
              
              
                """
        :type root: TreeNode
        :rtype: int
        """
              
              
                if
              
              
                not
              
               root
              
                :
              
              
                return
              
              
                0
              
              
                if
              
              
                not
              
               root
              
                .
              
              right 
              
                and
              
              
                not
              
               root
              
                .
              
              left
              
                :
              
              
                return
              
              
                1
              
              
        cur 
              
                =
              
              
                [
              
              root
              
                ]
              
              
        minnmb 
              
                =
              
              
                0
              
              
                while
              
               cur
              
                :
              
              
            nextstack
              
                ,
              
              tmp 
              
                =
              
              
                [
              
              
                ]
              
              
                ,
              
              
                [
              
              
                ]
              
              
                for
              
               node 
              
                in
              
               cur
              
                :
              
              
                tmp
              
                .
              
              append
              
                (
              
              node
              
                .
              
              val
              
                )
              
              
                if
              
               node
              
                .
              
              left
              
                :
              
              
                    nextstack
              
                .
              
              append
              
                (
              
              node
              
                .
              
              left
              
                )
              
              
                if
              
               node
              
                .
              
              right
              
                :
              
              
                    nextstack
              
                .
              
              append
              
                (
              
              node
              
                .
              
              right
              
                )
              
              
                for
              
               node 
              
                in
              
               cur
              
                :
              
              
                if
              
              
                not
              
               node
              
                .
              
              left 
              
                and
              
              
                not
              
               node
              
                .
              
              right
              
                :
              
              
                    minnmb 
              
                +=
              
              
                1
              
              
                return
              
               minnmb
            
              
                if
              
               node 
              
                ==
              
               cur
              
                [
              
              
                -
              
              
                1
              
              
                ]
              
              
                :
              
              
                minnmb 
              
                +=
              
              
                1
              
              
            cur 
              
                =
              
               nextstack
        

            
          

上面的代碼居然提交,打敗了99.89的人,我????黑人問號!!!記錄以下~~
python 最大深度最小深度 LeetCode 104,111_第3張圖片


DFS版本

            
              
                # Definition for a binary tree node.
              
              
                # class TreeNode(object):
              
              
                #     def __init__(self, x):
              
              
                #         self.val = x
              
              
                #         self.left = None
              
              
                #         self.right = None
              
              
                class
              
              
                Solution
              
              
                (
              
              
                object
              
              
                )
              
              
                :
              
              
                def
              
              
                maxDepth
              
              
                (
              
              self
              
                ,
              
               root
              
                )
              
              
                :
              
              
                """
        :type root: TreeNode
        :rtype: int
        """
              
              
                if
              
              
                not
              
               root
              
                :
              
              
                return
              
              
                0
              
              
                return
              
              
                1
              
              
                +
              
              
                max
              
              
                (
              
              self
              
                .
              
              maxDepth
              
                (
              
              root
              
                .
              
              right
              
                )
              
              
                ,
              
              self
              
                .
              
              maxDepth
              
                (
              
              root
              
                .
              
              left
              
                )
              
              
                )
              
            
          
            
              
                # Definition for a binary tree node.
              
              
                # class TreeNode(object):
              
              
                #     def __init__(self, x):
              
              
                #         self.val = x
              
              
                #         self.left = None
              
              
                #         self.right = None
              
              
                class
              
              
                Solution
              
              
                (
              
              
                object
              
              
                )
              
              
                :
              
              
                def
              
              
                minDepth
              
              
                (
              
              self
              
                ,
              
               root
              
                )
              
              
                :
              
              
                """
        :type root: TreeNode
        :rtype: int
        """
              
              
                if
              
              
                not
              
               root
              
                :
              
              
                return
              
              
                0
              
              
                if
              
              
                not
              
               root
              
                .
              
              left
              
                :
              
              
                return
              
              
                1
              
              
                +
              
               self
              
                .
              
              minDepth
              
                (
              
              root
              
                .
              
              right
              
                )
              
              
                if
              
              
                not
              
               root
              
                .
              
              right
              
                :
              
              
                return
              
              
                1
              
              
                +
              
               self
              
                .
              
              minDepth
              
                (
              
              root
              
                .
              
              left
              
                )
              
              
                return
              
              
                1
              
              
                +
              
              
                min
              
              
                (
              
              self
              
                .
              
              minDepth
              
                (
              
              root
              
                .
              
              right
              
                )
              
              
                ,
              
              self
              
                .
              
              minDepth
              
                (
              
              root
              
                .
              
              left
              
                )
              
              
                )
              
            
          

更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 汝南县| 澄江县| 庆安县| 铜川市| 白玉县| 盐津县| 延安市| 长顺县| 始兴县| 菏泽市| 濮阳县| 高阳县| 淳化县| 新泰市| 卢龙县| 呼图壁县| 宜城市| 扎赉特旗| 固原市| 南阳市| 自治县| 黑山县| 获嘉县| 渭南市| 左权县| 中西区| 台安县| 射阳县| 马山县| 崇州市| 郁南县| 邵东县| 丽水市| 湛江市| 阿城市| 延寿县| 澄江县| 临沂市| 尼玛县| 内乡县| 南郑县|