题解 | #后缀子串排序#

后缀子串排序

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

#include <iostream>
#include<string>
#include<vector>
#include<algorithm>
using namespace std;

int main() {
    string str;
    vector<string> v;
    while(cin>>str){
        v.clear();
        string tep;
        for(int i=0;i<str.length();i++){
            tep=str.substr(i);
            v.push_back(tep);
            
        }
        sort(v.begin(),v.end());
        for(vector<string>:: iterator it=v.begin();it!=v.end();it++){
            cout<<(*it)<<endl;
        }
        

    }
    return 0;
    
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

09-22 15:45
门头沟学院 Java
谁给娃offer我给...:我也遇到了,我说只要我通过面试我就去,实际上我根本就不会去😁
点赞 评论 收藏
分享
10-22 19:44
门头沟学院 Java
面了100年面试不知...:那我得去剪个头
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务