解题思路:
注意事项:
参考代码:
#include <bits/stdc++.h>
using namespace std;
long long tong[100000];
int main()
{
int n;
cin>>n;
for(int i=1; i<=n; i++)
{
int a;
cin>>a;
tong[a]++;//放到对应的桶中
}
for(int i=0; i<100000; i++)
{
while(tong[i]--)//输出重复的数//也可以用for(int j=0;j<100000;j++);
{
cout<<i<<' ';
}
}
return 0;
}
0.0分
0 人评分
C语言训练-数字母 (C语言代码)浏览:610 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:669 |
字符串的输入输出处理 (C语言代码)浏览:1019 |
校门外的树 (C语言代码)浏览:988 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:562 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:866 |
C语言程序设计教程(第三版)课后习题12.3 (C语言代码)浏览:587 |
简单的a+b (C语言代码)浏览:691 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:479 |
C语言程序设计教程(第三版)课后习题7.2 (C++代码)浏览:452 |