Given preorder and inorder traversal of a tree, construct the binary tree. Note: You may assume that duplicates do not exist in the tree. 难度:95,参考了网上的思路.这道题是树中比较有难度的题目,需要根据先序遍历和中序遍历来构造出树来.这道题看似毫无头绪,其实梳理一下还是有章可循的.下面我们就用一个例子来解释如何构造出树.假设树的先序遍历是12453687,…