题解 | #后缀子串排序#

后缀子串排序

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

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


int main(){
    string str;
    while(cin>>str){
        int i=str.length();
        set<string> s;
        while(i){
            s.insert(str);
            i--;
            str.erase(str.begin());
        }
        for(auto i:s)//遍历s,将所有元素输出
            cout<<i<<endl;
    }
    return 0;
}

全部评论

相关推荐

11-17 23:00
南昌大学 Java
这个名称和你无缘:10元一天 0元提成😂
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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