LeetCode-111: 두 갈래 나무의 최소 깊이(Minimum Depth of Binary Tree)

제목 링크
https://leetcode.com/problems/minimum-depth-of-binary-tree/
제목 설명
Given a binary tree, find its minimum depth.
The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node. 두 갈래 나무를 정해 최소 깊이를 구하다.최소 깊이는 뿌리 노드에서 가장 가까운 잎 노드까지의 가장 가까운 경로의 노드 개수를 가리킨다.
방법 1
깊이 우선 검색(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 minDepth(self, root):
        """
        :type root: TreeNode
        :rtype: int
        """
        if root == None:
            return 0

        if not root.left:
            return 1 + self.minDepth(root.right)
        elif not root.right:
            return 1 + self.minDepth(root.left)
        else:
            return 1 + min(self.minDepth(root.left), self.minDepth(root.right))

좋은 웹페이지 즐겨찾기