第一题 #include<iostream> #include<vector> #include<string> #include<algorithm> using namespace std; int getIndex(const string& str) { int mid = max(int(str.length() / 2 - 1), 0); int res = str.length() - 1; //mid为中点 while (mid < str.length()) { int index = 0; ...