Construct Binary Tree from Preorder and Inorder Traversal
質問する
に答える
繰り返し
# 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 buildTree(self, preorder: List[int], inorder: List[int]) -> Optional[TreeNode]:
if preorder:
rootVal = preorder[0] # root 찾기
rootIndex = inorder.index(rootVal) # 좌 우 나눌 인덱스
root = TreeNode(rootVal)
root.left = self.buildTree(preorder[1:1+rootIndex], inorder[:rootIndex]) # 왼쪽 subTree
root.right = self.buildTree(preorder[1+rootIndex:], inorder[rootIndex+1:]) # 오른쪽 subTree
return root
else:
return None
結果
ちょっと遅いけど…きれいな再生乳液のような感じがします...
Reference
この問題について(Construct Binary Tree from Preorder and Inorder Traversal), 我々は、より多くの情報をここで見つけました
https://velog.io/@twinklesu914/Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
Reference
この問題について(Construct Binary Tree from Preorder and Inorder Traversal), 我々は、より多くの情報をここで見つけました https://velog.io/@twinklesu914/Construct-Binary-Tree-from-Preorder-and-Inorder-Traversalテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol