105. Construct Binary Tree from Preorder and Inorder Traversal — Medium
前往題目
之前寫過的文章
想法
- 觀察
inorder
和preorder
的規律
思路
preorder
的第一項一定是root
,這是它的特性inorder
的每個父節點,左邊一定是left subtree
,右邊一定是right subtree
- 把
inorder
的val->index
資訊存下來 builder function
每個循環都取得當前值,以及取得mid
的index
- 根據
mid
來呼叫builder
進一步建造左和右子樹
Code
105. Construct Binary Tree from Preorder and Inorder Traversal — Medium
https://f88083.github.io/2024/04/07/105-Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal-—-Medium/