C实例---括号匹配(栈实现)

代码:web #include <stdio.h> #include <string.h> #include <stdlib.h> #define STACKSIZE 100 typedef char ElemType; typedef struct stack { ElemType *base; ElemType *top; int s
相关文章
相关标签/搜索