#include
#include
#define TRUE 1
#define FALSE 0
#define OK 1
#define MAXSIZE 100
using namespace std;
typedef int Status;typedef int Elemtype;
typedef struct BINode
{
Elemtype data;
struct BINo...#include
#include
#define TRUE 1
#define FALSE 0
#define OK 1
#define MAXSIZE 100
using namespace std;
typedef int Status;typedef int Elemtype;
typedef struct BINode
{
Elemtype data;
struct BINode *lchild, *rchild;
} BINode, *BiTree;
Status TreeCreated = FALSE;
Status CreateBiTree (BiTree *T);
Status PreOrderTraverse (BiTree T);
Status InOrderTraverse (BiTree T);
Status PostOrderTraverse (BiTree T);
int main()
{
int choice=0;
Status leave=FALSE,flag;
BINode *BT;
cout |
|