这题用状态机比较好解决,代码看起来清晰很多 #include <iostream> #include <vector> #include <string> #include <list> #include <queue> #include <unordered_map> #include <algorithm> using namespace std; string to_upper(string& s) { for (auto& c : s) { c = toup...