文章

8

粉丝

118

获赞

21

访问

993

头像
后缀子串排序 题解:
P1294 上海交通大学机试题
发布于2025年3月15日 21:15
阅读数 106

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

int main(){
	string s;
	while(getline(cin,s)){
		int ls = s.length();
		string t[ls];
		string s1 = "";
		for(int i = ls - 1; i >= 0; i--){
			s1 = s[i] + s1;
			t[i] = s1;
		}
		sort(t,t + ls);
		for(int i = 0; i < ls; i++) cout << t[i] << endl; 
	}
	return 0;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发