typedefcharTElemType;typedefintStatus;typedefcharSElemType;//二叉树的二叉链表存储表示typedefstructBiTNode{TElemTypedata;BiTNode*lchild,*rchild;//左右孩子指针}BiTNode,*BiTree;typedefstruct{BiTree*base;BiTree*top;intstacksize;//当前已分配的存储空间}SqStack;StatusInitStack(SqStack&S)StatusGetTop