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

uva673-括号平衡

时间:2016-08-08 00:44:48      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:

小白书里数据结构基础的训练参考

 

翻译请戳 http://luckycat.kshs.kh.edu.tw/

 

解题思路

嗯。。。就是用栈。

出栈的时候不匹配、最后栈非空都是非法的表达式。

 

代码

#include<iostream>
#include<stdio.h>
#include<cstring>
#include<stack>
using namespace std;
const int MAX_LEN = 128+1;
int main()
{
    char operStr[MAX_LEN];
    int numStr;
    cin >> numStr;
    getchar();
    for(int i=0; i<numStr; i++) {
        stack<char> s;
        bool flag = true;
        gets(operStr);
        for(int j=0; j<strlen(operStr); j++) {
            if(operStr[j] == ( || operStr[j] == [) s.push(operStr[j]);
            else {
                if(operStr[j] == ] && (s.empty() || !s.empty() && s.top() != [)) {
                    flag = false; break;
                }
                if(operStr[j] == ) && (s.empty() || !s.empty() && s.top() != ()) {
                    flag = false; break;
                }
                s.pop();
            }
        }
        if(s.empty() && flag) cout << "Yes" << endl;
        else cout << "No" << endl;
    }
}

 

uva673-括号平衡

标签:

原文地址:http://www.cnblogs.com/ZengWangli/p/5747761.html

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