根据先序,中序,求后序遍历#include #include #include using namespace std; struct Node...
#include<cstdio>#include<cstring>#include<iostream>using namespace std;struct Node{ char data; Node *lchild,*rchild;}; Node* createtree(string pre,string in){ Node *root=NULL; if...