求助!~![关于排序]
以下是我编的一个小小的排序程序:#include<stdio.h>
#include<string.h>
void select(item,count)
char *item;
int count;
{
register int a,b,c;
char t;
for(a=0;a<count-1;++a)
{
c=a;
t=item[a];
for(b=a+1;b<count;++b)
{
if(item[b]<t) /*如果将此行中的t改成item[a],运行结果就会错误。例如输入:bggdeea,输出的就是abedegg*/
{
c=b;
t=item[b];
}
}
item[c]=item[a];
item[a]=t;
}
}
main()
{
char s[80];
printf("\tPlease insert the ring:");
gets(s);
select(s,strlen(s));
printf("\t:After order is :%s\n",s);
getch();
}
经过小小的修改后,发现输出的结果不是自己期望得到的,还望诸位大侠能予以指教~!谢谢!~