二叉树 /*coder:cyl time: 2020.12.22*/ #include<bits/stdc++.h> using namespace std; #define MAX_TREE_SIZE 1250 #define TElemType char #define Status int #define OK 1 #define ERROR -1 typedef struct BiTNode{ TElemType data; int Ltag,Rtag; struct BiTNode *lchild,*rchild; }BiTNode,*BiTree; typedef TE...