标签:
3 [(]) (]) ([[]()])
No No Yes
经典栈问题:
1 2 #include<iostream> 3 using namespace std; 4 #include<stack> 5 #include<string> 6 int main() 7 { 8 int n;//n组数据 9 cin>>n; 10 stack<char> ss;string s; 11 while(n--) 12 { 13 cin>>s; 14 int len=s.size(); 15 while(!ss.empty()) 16 ss.pop(); 17 ss.push(‘#‘); 18 for(int i=0;i<len;i++) 19 { 20 if(s[i]==‘[‘||s[i]==‘(‘) 21 ss.push(s[i]); 22 else 23 { 24 if(s[i]==‘]‘) 25 if(ss.top()==‘[‘) 26 ss.pop(); 27 else 28 ss.push(s[i]); 29 if(s[i]==‘)‘) 30 if(ss.top()==‘(‘) 31 ss.pop(); 32 else 33 ss.push(s[i]); 34 } 35 36 } 37 if(ss.top()==‘#‘) 38 cout<<"Yes\n"; 39 else 40 cout<<"No\n"; 41 } 42 return 0; 43 } 44
标签:
原文地址:http://www.cnblogs.com/ljwTiey/p/4303033.html