typedef struct node { StackElementType data; //数据域 struct node *next;//指针域 } LinkStackNode; //链栈类型的定义 typedef LinkStackNode *LinkStack;