给出一堆括号,看其是否匹配,例如 ()、()()、(()) 这样的括号就匹配,
)(、)()) 而这样的括号就不匹配
标签:problem pac pid 包含 否则 amp lang status stat
使用STL的stack容易实现。
#include <iostream> #include <stack> #include <string> using namespace std; int main() { string temp; while(cin>>temp) { stack<int> arr; int l=temp.length(); if(l%2==1||temp[0]==‘)‘||temp[l-1]==‘(‘) cout<<"NO"<<endl; else { for(int i=0; i<l; i++) { if(temp[i]==‘(‘) arr.push(1); else if(temp[i]==‘)‘&&arr.empty()!=0)//(()) 型 arr.pop(); else//()))型 { break; } } if(temp.empty()==0&&i==l)//为空,并且正常完成循环 cout<<"YES"<<endl; else cout<<"NO"<<endl; } } }
标签:problem pac pid 包含 否则 amp lang status stat
原文地址:https://www.cnblogs.com/Jie-Fei/p/9126888.html