文件名称:能进行括号匹配
文件大小:2KB
文件格式:CPP
更新时间:2015-06-26 04:06:37
C 数据结构 源代码
对括号进行左右匹配,对应的,可运行typedef struct { int *base; int *top; int stacksize; }SqStack; int InitStack(SqStack *S) { S->base=(int *)malloc(STACK_INIT_SIZE*sizeof(int)); if(!S->base) { printf("\n磁盘不足.\n"); getch(); exit(ERROR); } S->top=S->base; S->stacksize=STACK_INIT_SIZE; return 1; }