题解 | #后缀子串排序#

后缀子串排序

http://www.nowcoder.com/questionTerminal/f89f96ea3145418b8e6c3eb75773f65a

#include #include #include using namespace std; int main() { string s; while (cin >> s) { set set1; for (int i = 0; i < s.size(); i++) { set1.insert(s.substr(i)); } for (string it : set1) { cout << it << endl; } } return 0; } // 64 位输出请用 printf("%lld")

全部评论

相关推荐

_mos_:要不是看评论区我都不知道你要找的是数分
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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