首页 > 代码库 > 算法竞赛入门经典(第六章)
算法竞赛入门经典(第六章)
习题6-1,UVa673,Time:11.1
1 #include <iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<cstdlib> 5 #include<string> 6 #include <stack> 7 using namespace std; 8 int main() { 9 int Case;10 string str;11 bool flag;12 scanf("%d",&Case);13 for(int c = 1; c <= Case; c++)14 {15 stack<char>q;16 flag = true;17 cin>>str;18 for(int i = 0; i < str.length(); i++)19 {20 if(q.size() == 0 || str[i]==‘(‘ || str[i]==‘[‘) q.push(str[i]);21 else22 {23 if((str[i]==‘)‘ && q.top()==‘(‘) || (str[i]==‘]‘ && q.top()==‘[‘))24 {25 q.pop();26 }27 else28 {29 flag = false;30 break; 31 }32 }33 }34 if(flag==false || q.size()) cout<<"NO"<<endl;35 else cout<<"YES"<<endl;36 }37 return 0;38 }
算法竞赛入门经典(第六章)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。