class Solution { public: typedef vector<int>::iterator vit; TreeNode* reConstructBinaryTree(const vit &preBeg,const vit &preEnd, const vit &vinBeg,const vit &vinEnd) { if (preBeg == preEnd) return nullptr; TreeNode *roo...