比赛 |
20120330 |
评测结果 |
WWWAWAAAAW |
题目名称 |
字符串子串 |
最终得分 |
50 |
用户昵称 |
Cloud |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2012-03-30 20:54:22 |
显示代码纯文本
#include<cstdlib>
#include<cstring>
#include<fstream>
#include<cstdio>
using namespace std;
struct yu
{
char ch[100];
}y[8];
int cmp(const void*a,const void *b)
{
struct yu *c=(struct yu *)a;
struct yu *d=(struct yu *)b;
return strcmp(c -> ch,d -> ch);
}
int main(void)
{
ifstream fin("substring.in");
ofstream fout("substring.out");
int n,i;
fin>>n;
for(i=0;i<n;i++)
fin>>y[i].ch;
qsort(y,n,sizeof(y[0]),cmp);
for(i=0;i<n;i++)
fout<<y[i].ch;
fin.close();
fout.close();
return 0;
}