括号配对问题
时间限制:
3000 ms | 内存限制:
65535 KB 难度:
3
- 描述
- 现在,有一行括号序列,请你检查这行括号是否配对。
- 输入
- 第一行输入一个数N(0<N<=100),表示有N组测试数据。后面的N行输入多组输入数据,每组输入数据都是一个字符串S(S的长度小于10000,且S不是空串),测试数据组数少于5组。数据保证S中只含有”[“,”]”,”(“,”)”四种字符
- 输出
- 每组输入数据的输出占一行,如果该字符串中所含的括号是配对的,则输出Yes,如果不配对则输出No
- 样例输入
3 [(]) (]) ([[]()])
- 样例输出
No No Yes
#include<stdio.h> #include<string.h> char S[11000]; char g[11000]; int main() { int a,b,i,top,c; scanf("%d",&a); getchar(); while(a--) { top=1; gets(S); //getchar(); b=strlen(S); g[0]=S[0]; if(b&1)//判断字符串长度是否为奇数 { printf("No\n"); continue; } else if(g[0]==')'||g[0]==']')//判断是否从右括号开始 { printf("No\n"); continue; } else { //g[0]=S[0]; for(i=1;i<b;i++)//配对出栈 { g[top]=S[i]; if(g[top-1]=='('&&S[i]==')') top--; else if(g[top-1]=='['&&S[i]==']') top--; else g[top++]=S[i]; } //c=strlen(a); if(top==0) printf("Yes\n"); else printf("No\n"); } } return 0; }