106. Construct Binary Tree from Inorder and Postorder Traversal - Medium
前往題目
想法
postorder
最後面一定是root
思路
用root
去定位,就可以得知左右子樹
dfs
inorder
和postorder
都使用雙指針- 當左指針超過右指針時回傳
null
,代表沒有子節點 - 取得根節點的值,以及其在
inorder
中的index
- 然後就可以建立父節點以及其左右子節點並遞迴呼叫
postorder
只是拿來找根節點的
Code
106. Construct Binary Tree from Inorder and Postorder Traversal - Medium
https://f88083.github.io/2024/11/07/106-Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal-Medium/