栈基本操作(顺序栈、共享栈、单链栈说明)C语言版
#include <stdio.h>#include <stdlib.h>#define MAXSIZE 50typedef struct { int *data; int pop; }Sqstack; void Init(Sqstack *S) //初始化栈 { S->pop=-1; printf("-----...