LeeMax117 / LeetCode_practise

recorde our Leetcode process
0 stars 1 forks source link

106. Construct Binary Tree from Inorder and Postorder Traversal #12

Closed LeeMax117 closed 5 years ago

LeeMax117 commented 5 years ago

Given inorder and postorder traversal of a tree, construct the binary tree.

Note: You may assume that duplicates do not exist in the tree.

For example, given

inorder = [9,3,15,20,7] postorder = [9,15,7,20,3]

Return the following binary tree:

3 / \ 9 20 / \ 15 7

LeeMax117 commented 5 years ago

https://github.com/LeeMax117/LeetCode_practise/tree/master/LeeMax/106.%20Construct_Binary_Tree_from_Inorder_and_Postorder_Traversal

nijilong1224 commented 5 years ago

https://github.com/LeeMax117/LeetCode_practise/blob/master/Jinglong/buildTree.py