#include "stdio.h"
main()
{int a[100],b[100],i,j,n;
printf("Input How Big the array is:\n");
scanf("%d",&n);
printf("Now input the numbers:\n");
for(i=0;i
for(i=0;i
for(i=0;i
printf("\n");
for(i=0;i
getch();
}
我想这个是你想要的
如果整数的值有确定范围,可以用计数排序的原理,只不过不用累计了,重复的数也只要记1个就行了.