Construct Binary Tree from Preorder and Postorder Traversal - Python
问题描述:889.根据前序和后序遍历构造二叉树返回与给定的前序和后序遍历匹配的任何二叉树。pre和post遍历中的值是不同的正整数。示例:输入:pre=[1,2,4,5,3,6,7],post=[4,5,2,6,7,3,1]输出:[1,2,3,4,5,6,7]提示:1<=pre.length==post.length<=30pre[]和post[]都是1,2,...,pre.length的排列每个