Subtree of Another Tree
質問する
に答える
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
結果
Reference
この問題について(Subtree of Another Tree), 我々は、より多くの情報をここで見つけました
https://velog.io/@twinklesu914/Subtree-of-Another-Tree
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
Reference
この問題について(Subtree of Another Tree), 我々は、より多くの情報をここで見つけました https://velog.io/@twinklesu914/Subtree-of-Another-Treeテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol