1.编译器求大小问题 #include<iostream> #include<vector> #include<algorithm> #include <cassert> #include<sstream> #include <stack> using namespace std; bool check(string& str) { for (char c : str) { if (c == '[') return true; } return false; } int main() { ...