一般情况下,作为二叉排序树的存储结构,我们选择二叉链表。typedef struct BiTNode { //结点结构struct BiTNode lchild, rchild; //左右孩子指针} BiTNode, *BiTree; TElemType data;