算法与数据结构顺序栈
#include<stdio.h> #include<stdlib.h> #include<conio.h> #define MAXSIZE 100 typedef int elemtype; typ
算法与数据结构顺序栈