Construct Binary Tree from Inorder and Postorder/Preorder Traversal
Description Construct Binary Tree from Preorder and Inorder Traversal https://oj.leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/ Construct Binary Tree from Inorder and Postorder Traversal https://oj.leetcode.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/ Difficulty: 2.0/5.0 Solution Obviously we should recover the BST in a recursive manner. The pre/post-order traversal can be used to determine...