typedefintStatus;/*Status是函数的类型*/typedefstructBiThrNode{TElemTypedata;structBiThrNode*lchild,*rchild;/*左右孩子指针*/PointerTagLTag,RTag;/*左右标志*/}BiThrNode,*BiThrTree;StatusCreateBiThrTree(BiThrTree*T){/*按先序输入二叉线索树中结点的值,构造二叉线索树T*//*0(整型)/空格(字符型)表示空结点*/StatusInOrderThreading(BiThrTr