括号匹配 栈typedef struct { char a[MAX]; int top; } seqstack; void initstack(seqstack *s) { s->top=-1; }