Tree: Depth-First Search - Construct Tree from Inorder and Postorder
Given the following partial recursion state during building a tree from inorder and postorder traversals, where the current root is 20, and the inorder segment is [15, 20, 7], postorder segment is [15, 7, 20], what is the original inorder array?
