文章

105

粉丝

69

获赞

117

访问

57.2k

头像
后缀子串排序(C++) 题解:
P1294 上海交通大学机试题
发布于2024年5月26日 11:03
阅读数 487

#include<bits/stdc++.h>
using namespace std;

string str;

int main()
{
    while(cin >> str)
    {
        vector<string> a;
        int n = str.size();
        for(int i = 0; i < n; i ++)
            a.push_back(str.substr(i, n - i));
            
        sort(a.begin(), a.end());
        
        for(auto s : a)
            cout << s << endl;
    }
    return 0;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发