http://acm.nyist.net/JudgeOnline/problem.php?pid=540
题目大意:给定两个数 i 和 j ,将数字 i ~ j 翻转后按升序排列输出。
#include<iostream>
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<algorithm>
using namespace std;
struct node
{
int first,last;
}num[55];
//翻转字符串
char* strrev(char *s)
{
int len=strlen(s);
char *begin,*end,temp;
begin=s;
end=s+len-1;
while(begin<end){
temp=*begin;
*begin=*end;
*end=temp;
begin++;
end--;
}
return s;
}
int cmp(const void *a,const void *b)
{
return (*(struct node*)a).last-(*(struct node*)b).last;
}
int main()
{
int n,a,b,i,j;
char t[8];
scanf("%d",&n);
while(n--){
scanf("%d%d",&a,&b);
for(i=a,j=0;i<=b;i++){
num[j].first=i;
sprintf(t,"%d",i); //将整数i变为字符串存入t中;函数itoa有同样功能,只是不属于C标准库函数
strrev(t); //将字符串t翻转
num[j++].last=atoi(t); //将字符串t变成整数
memset(t,0,sizeof(t));
}
qsort(num,j,sizeof(num[0]),cmp);
for(i=0;i<j;i++){
printf(i==0?"%d":" %d",num[i].first);
}
puts("");
}
return 0;
}