码迷,mamicode.com
首页 > 其他好文 > 详细

括号匹配(栈的应用)

时间:2014-05-07 00:19:41      阅读:356      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   color   

bubuko.com,布布扣
#include <iostream>
#include <stack>
#include <string>
using namespace std;

int main()
{
    int n;cin>>n;
    while(n--){
        stack<char> s;
        string str;cin>>str;
        for(int i=0;i!=str.length();i++){
            if(s.empty()) s.push(str[i]);
            else{
                if(s.top()==(){
                    if(str[i]==)) s.pop();
                    else s.push(str[i]);}
                else if(s.top()==[){
                    if(str[i]==]) s.pop();
                    else s.push(str[i]);
                }
                else {s.push(str[i]);}
            }
        }
        if(s.empty()) cout<<"Yes"<<endl;
        else cout<<"No"<<endl;

    }
    return 0;
}
bubuko.com,布布扣

 

括号匹配(栈的应用),布布扣,bubuko.com

括号匹配(栈的应用)

标签:style   blog   class   code   java   color   

原文地址:http://www.cnblogs.com/xzenith/p/3712530.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!