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

括号匹配问题 :()[] 难度1

时间:2018-12-26 01:12:16      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:||   dex   ace   return   begin   using   匹配   top   namespace   

#include <iostream>
using namespace std;
#include <string>
bool ShiPiPei(const char* test) {
    string s;
    char str[100];
    int topStackIndex = 0;
    s.assign(test);
    for (string::iterator it = s.begin(); it != s.end(); it++){
    if ((*it) == ( || (*it) == [) {
        str[topStackIndex++]=(*it);
    }
    else if ((*it) == )) {
        if (str[--topStackIndex] == () {
                
        }
        else {
            //cout << "不匹配!" << endl;
            return false;
        }
    }
    else if ((*it) == ]) {
        if (str[--topStackIndex] == [) {
    
        }
        else {
            //cout << "不匹配!" << endl;
            return false;
        }
    }
    }
    //cout << "匹配";
    return true;
}
int main() {
    if (ShiPiPei("([)]")) {
        cout << "匹配!" << endl;
    }
    else {
        cout<<"不匹配!" << endl;
    }
}

 

括号匹配问题 :()[] 难度1

标签:||   dex   ace   return   begin   using   匹配   top   namespace   

原文地址:https://www.cnblogs.com/likeghee/p/10177103.html

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