Subtree of Another Tree
문제
- subRoot가 root의 subtree면 true
풀이
- bfs로 트리 탐색
- 값이 같은 노드 만나면, 비교 함수 호출
from collections import deque
# 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 isSubtree(self, root: Optional[TreeNode], subRoot: Optional[TreeNode]) -> bool:
q = deque()
q.append(root)
while q:
thisNode = q.popleft()
if thisNode.val == subRoot.val:
isSame = compare(thisNode, subRoot)
if isSame:
return True
if thisNode.left:
q.append(thisNode.left)
if thisNode.right:
q.append(thisNode.right)
return False
def compare(root1, root2):
if not root1 and not root2:
return True
if not root1:
return False
if not root2:
return False
if root1.val == root2.val:
leftCompare = compare(root1.left, root2.left)
rightCompare = compare(root1.right, root2.right)
return leftCompare and rightCompare
return False
결과
- bfs로 트리 탐색
- 값이 같은 노드 만나면, 비교 함수 호출
from collections import deque
# 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 isSubtree(self, root: Optional[TreeNode], subRoot: Optional[TreeNode]) -> bool:
q = deque()
q.append(root)
while q:
thisNode = q.popleft()
if thisNode.val == subRoot.val:
isSame = compare(thisNode, subRoot)
if isSame:
return True
if thisNode.left:
q.append(thisNode.left)
if thisNode.right:
q.append(thisNode.right)
return False
def compare(root1, root2):
if not root1 and not root2:
return True
if not root1:
return False
if not root2:
return False
if root1.val == root2.val:
leftCompare = compare(root1.left, root2.left)
rightCompare = compare(root1.right, root2.right)
return leftCompare and rightCompare
return False
결과
Author And Source
이 문제에 관하여(Subtree of Another Tree), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@twinklesu914/Subtree-of-Another-Tree저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)