题解
2024-09-08 15:24:15
发布于:广东
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
stack<char> st;
string s;
cin >> s;
for (int i=0;i<s.size()-1;++i){
if (s[i]=='('){
st.push(s[i]);
}else if (s[i]==')'){
if (st.empty()){
cout<<"NO";
return 0;
}else{
st.pop();
}
}
}
if (st.empty()){
cout<<"YES";
}else{
cout<<"NO";
}
return 0;
}
这里空空如也
有帮助,赞一个