Construct Binary Tree from Preorder and Inorder Traversal
Given preorder and inorder traversal of a tree, construct the binary tree.
Note: You may assume that duplicates do not exist in the tree.
Solution:
The key point is to figure out the root for each recursion and also use python sub list [start:stop:step] to locate a range of preorder and inorder instead of indexing range.
Last updated
Was this helpful?