现在,有一行括号序列,请你检查这行括号是否配对。
输入
第一行输入一个数N(0 输出
每组输入数据的输出占一行,如果该字符串中所含的括号是配对的,则输出Yes,如果不配对则输出No
样例输入
3
[(])
(])
([])
样例输出
No
No
Yes
#include
using namespace std;
int main()
{
int n;
cin>>n;
while(n--)
{
char str[10002];
stack ok;
cin>>str;
int len=strlen(str);
for(int i=0;i