用顺序存储结构或链式存储结构都能够简单实现
typedef struct BiTNode { ElemType data; struct BiTNode *lchild, *rchild; } BiTNode, *BiTree;