Uva 673 括号匹配

原题
经典的括号匹配问题, 这种问题一律用堆栈, 也非常好写
唯一需要注意的地方是以行为单位区分字符串的, 因此要每次读入一行
然后再消去其中可能出现的空格.
用algorithm的remove_if和string自带的erase一步到位~

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <string>
#include <vector>
#include <set>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <list>
#include <cassert>
#include <iomanip>

/*
Uva 673 
关键 : 匹配问题还是用堆栈最快
*/

using namespace std;

bool isBalanced;

string input;

int ptr;

int N;

inline bool isSpace(char c) { return c == ' '; }

inline bool isMatch(char c1, char c2) {
    return (c1 == '(' && c2 == ')' || c1 == '[' && c2 == ']');
}

void Judge( ) {
    char ch, tmp;
    stack<char> stk;
    string::iterator it = input.begin();
    for ( int i = 0; i < input.length( ); i++ ) {
        ch = input.at(i);
        if ( ch == '(' || ch == '[' ) {
            stk.push(ch);
        } else if ( stk.empty()==true || !isMatch(stk.top( ), ch) ) {
            isBalanced = false;
            break;
        } else {
            stk.pop( );
        }
    }
    while ( !stk.empty() ) {
        isBalanced = false;
        stk.pop( );
    }
}

int main( ) {
    cin >> N;
    getchar( );
    while ( N-- ) {
        isBalanced = true;
        ptr = 0;
        getline(cin, input);
        input.erase(remove_if(input.begin( ), input.end( ), isSpace), input.end( ));// remove_if 把满足条件的字符实际上只是都排到最后, 
                                                                                    // 并返回一个迭代器, 指向排好后的序列的最后一个元素
        if ( input.length() > 0 ){
            Judge( );
        }
        if (isBalanced){
            cout << "Yes" << endl;
        } else {
            cout << "No" << endl;
        }
    }

    //system("pause");
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值