typedef struct node { datatype data; struct node *next; } StackNode,* LinkStack;