https://leetcode.com/problems/trim-a-binary-search-tree/
재귀로 트리를 선회하는 방식이 이제 이해가 되는 거 같다.
# 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
class Solution:
def trimBST(self, root: Optional[TreeNode], low: int, high: int) -> Optional[TreeNode]:
if root is None:
return None
root.left = self.trimBST(root.left, low, high)
root.right = self.trimBST(root.right, low, high)
if low <= root.val <= high:
return root
else:
if root.right:
return root.right
if root.left:
return root.left
return None
'Programming > LeetCode' 카테고리의 다른 글
[LeetCode] Balanced Binary Tree (균형 이진 트리 확인 Python) (0) | 2022.04.20 |
---|---|
[LeetCode] Spiral Matrix II (나선 매트릭스 순환) (0) | 2022.04.13 |
[LeetCode] Game of Life (0) | 2022.04.12 |
[LeetCode] Diameter of Binary Tree (이진트리 가장 긴 경로) (0) | 2022.04.08 |
[LeetCode] Maximum Depth of Binary Tree (이진트리 최대 깊이 구하기) (0) | 2022.04.08 |
댓글