STL应用——UVA673(堆栈)

Posted GGBeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STL应用——UVA673(堆栈)相关的知识,希望对你有一定的参考价值。

  • 分析:栈的应用,遇到右括号便弹出栈顶元素,看是否与右括号相互匹配,其余情况压入栈。
  • 注意:本题有坑,空串空串,为此我跪了数次
#include<iostream>
#include<string>
#include<stack>
using namespace std;
int main()
{
    int n;
    cin>>n;
    cin.get();
    while(n--)
    {
        stack<char> s;
        string str;
        int flag=0;
        getline(cin,str);        //按行读入,可读入空串
        for(int i=0;i<str.size();i++)
        {
            if(str[i]==‘[‘||str[i]==‘(‘) s.push(str[i]);
            else if(!s.empty()&&s.top()==‘(‘&&str[i]==‘)‘) s.pop();
            else if(!s.empty()&&s.top()==‘[‘&&str[i]==‘]‘) s.pop();
            else flag=1;
        }
        if(!flag&&!s.size()) cout<<"Yes"<<endl;
        else cout<<"No"<<endl;
     }
     return 0;
}    

 

以上是关于STL应用——UVA673(堆栈)的主要内容,如果未能解决你的问题,请参考以下文章

B - Parentheses Balance (UVA - 673)

习题6_1 平衡的括号(Parentheses Balance, UVa 673)

习题6_1 平衡的括号(Parentheses Balance, UVa 673)

uva673-Parentheses Balance

平衡的括号[UVA-673]

UVA-673-栈-水题