数据结构实验三之顺序栈
#include<stdio.h>#include<malloc.h>#define MAXSIZE 100typedef int DataType;typedef struct stack
数据结构实验三之顺序栈