Construct Binary Tree from Preorder and Inorder Traversal

박수빈·2022년 3월 25일
0

leetcode

목록 보기
51/51


문제

  • preorder와 inorder가 리스트로 주어졌을 때
  • tree를 만들어 root를 리턴하여라

풀이

  • 이전에 백준에서 해본 것 같은데
  • preorder는 무조건 root가 먼저 나오니까 root찾기
  • root 이용해서 inorder를 좌우로 나누기
  • recursion으로 반복하기
# 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

결과

좀 느리지만.... 깔끔한 리컬젼 같은데...

profile
개발자가 되고 싶은 학부생의 꼼지락 기록

0개의 댓글