括号匹配的数据结构算法
//match.h #include //malloc,realloc #include //overflow #include //exit() #include #define S_SIZE 100 //栈的空间大小 #define STACKINCREAMENT 10//增加空间 using namespace std; struct SqStack{ int *base; //栈底 int *top; //栈顶 int sta
下载地址
用户评论