文章
82
粉丝
344
获赞
28
访问
698.3k
#include <bits/stdc++.h>
using namespace std;
//字符串数组不能直接写成char[][]这样会被理解成二维字符类型数组
//通过构造结构体数组,每个结构体中存放一个char[]即可
char s[105];
struct node{
char s[105];
};
node a[105];
bool cmp(node x,node y){
if(strcmp(x.s,y.s)<0) return true;
else return false;
}
int main(){
while(scanf("%s",&s)!=EOF){
int len=strlen(s);
for(int i=0;i<len;i++){
int index=0;
for(int j=i;j<len;j++){
a[i].s[index++]=s[j];
}
}
sort(a,a+len...
登录后发布评论
啊这
啊这