括号匹配问题 :()[] 难度1
Posted likeghee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了括号匹配问题 :()[] 难度1相关的知识,希望对你有一定的参考价值。
#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的主要内容,如果未能解决你的问题,请参考以下文章