Leetcode # 104 (Python): Maximum Depth of Binary Tree
3831 ワード
Maximum Depth of Binary Tree
Problem
Solution
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
import collections
class Solution:
def maxDepth(self, root: TreeNode) -> int:
# Check for empty tree
if not root:
return 0
# Make root into a queue
que = collections.deque([root])
depth = 0
# Iterate until que is empty
while que:
depth += 1
for _ in range(len(que)):
cur_root = que.popleft()
# If current root has child, append it to que
if cur_root.left:
que.append(cur_root.left)
if cur_root.right:
que.append(cur_root.right)
return depth
Reference
この問題について(Leetcode # 104 (Python): Maximum Depth of Binary Tree), 我々は、より多くの情報をここで見つけました https://velog.io/@ahn16/Leetcode-104-Pythonテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol