您的位置:首页 > 其它

uva 11462 Age Sort

2014-06-10 01:25 381 查看
输入的数据量很大,不可能把数据全部读到内存然后快排,但是数据的范围是很窄的,所以可以通过计数的方式来排序。

#include <stdio.h>
#include <string.h>

int count[101];

int main(void){
int n, i, j;
int num;
bool first_one;

//freopen("input.dat", "r", stdin);
while(scanf("%d", &n), n){
memset(count, 0, sizeof(int)*(101));
for(i=1; i<=n; i++){
scanf("%d", &num);
count[num]++;
}

first_one = true;
for(i=1; i<=100; i++){
if(count[i]){
for(j=1; j<=count[i]; j++){
if(first_one){
first_one = false;
printf("%d", i);
}
else{
printf(" %d", i);
}
}
}
}
printf("\n");
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  acm uva