题解
2024-03-22 20:51:52
发布于:上海
1阅读
0回复
0点赞
#include<iostream>
#include<stack>
using namespace std;
stack<int>stk;
char a;
int main()
{
while(cin>>a)
{
if (a=='@')
{
break;
}
else if(a=='('||a=='[')
{
stk.push(a);
}
else if(a==')')
{
if (stk.empty()||stk.top()!='(')
{
cout<<"NO";
return 0;
}
stk.pop();
}
else if(a==']')
{
if (stk.empty()||stk.top()!='[')
{
cout<<"NO";
return 0;
}
stk.pop();
}
else
{
continue;
}
}
if (stk.empty())
{
cout<<"YES";
}
else
{
cout<<"NO";
}
return 0;
}
这里空空如也
有帮助,赞一个