善用STL #include <iostream> #include <string> #include <algorithm> #include <vector> using namespace std; int main() { string str; cin >> str; vector<string> toSort; for (int i = 0; i < str.size(); ++i) //分割子串 toSort.push_back(str.substr(i)); sort(toSort.begin(),...