#include<iostream> using namespace std; struct btree{ char data; btree* leftchild; btree* rightchild; btree(){} btree(char c):data(c),leftchild(nullptr),rightchild(nullptr){} }; btree* build(string preorder,string inorder){ ...