题解 | #后缀子串排序#

后缀子串排序

https://www.nowcoder.com/practice/f89f96ea3145418b8e6c3eb75773f65a

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

int main() {
    string s;
    while(getline(cin,s)){
        vector<string>v;
        for(int i =0;i<s.length();i++){
            v.push_back(s.substr(i,s.length()));
        }
        sort(v.begin(),v.end());
        for(auto a:v)cout<<a<<endl;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务