题解 | 后缀子串排序

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

int main() {
	string s;
	cin >> s;
	vector<string> str;
	for (int i = 0; i < s.length(); i++) {
		str.push_back(s.substr(i, s.length()));
	}
	sort(str.begin(), str.end());
	for (int i = 0; i < s.length(); i++) {
		cout << str[i] << '\n';
	}
	
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
03-19 10:38
实力求职者:真的绷不住了,第一张霸总人设,第二张求生欲拉满
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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