解
2023-11-19 20:49:18
发布于:江苏
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
string s;
stack <char> stk;
int main()
{
getline(cin, s);
int l = s.length();
for(int i = 0; i < l; i++)
{
if(s[i] == '(')
{
stk.push('(');
}
else if(s[i] == ')')
{
if(stk.empty())
{
cout << "NO";
return 0;
}
else
{
stk.pop();
}
}
}
if(stk.empty())
{
cout << "YES";
return 0;
}
else
{
cout << "NO";
return 0;
}
return 0;
}
这里空空如也
有帮助,赞一个