本文主要是介绍P6 括号匹配 (15 分),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
栈的操作
#include <iostream>
#include <cstdio>
#include <stack>
#include <string>
#include <cctype>
#include <unordered_map>
using namespace std;
int main(){string str;getline(cin, str);stack<char> st;bool flag = true;int left = 0, right = 0;for(int i = 0; i < str.size(); i++){if(str[i]=='(' || str[i]=='{'||str[i]=='[') left++, st.push(str[i]);else if(str[i]==')'||str[i]=='}'||str[i]==']'){right++;if(st.size()){if(str[i] == ')' && st.top()=='(') st.pop();else if(str[i] == '}' && st.top() == '{') st.pop();else if(str[i] == ']' && st.top() == '[') st.pop();else flag = false;}else flag = false;}}cout<<left<<" "<<right<<endl;if(flag && st.empty()) cout<<"YES"<<endl;else cout<<"NO"<<endl;return 0;
}
这篇关于P6 括号匹配 (15 分)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!