#include <iostream>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <algorithm>
using namespace std;
int n;
int _hash[110];
int main()
{
int n;
while(~scanf("%d",&n))
{
memset(_hash,0,sizeof(_hash));
int num = 0;
while(n--)
{
int key;
scanf("%d",&key);
if(key > 100)
key = 100;
if(!_hash[key])
num++;
_hash[key]++;
}
for(int i = 0; i <= 100; i++)
{
if(_hash[i])
printf("%d %d\n",i,_hash[i]);
}
}
return 0;
}
DS-SDOJ-数据结构实验之排序三:bucket sort
最新推荐文章于 2019-08-15 15:18:31 发布