C++,用字符串做容器的解题思路。 #include<bits/stdc++.h> using namespace std; int main() { string str, temp, dst; getline(cin, str); for (char c : str) { if (c != ' ') temp += c; //左右拼接有差异的 else { d...