数据结构-栈代码
栈——代码实现//定义顺序表:#include <stdio.h>#define MAXLEN 10typedef int ElementType;typedef struct { ElementTy
数据结构-栈代码