博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ccf 出现次数最多的数
阅读量:5292 次
发布时间:2019-06-14

本文共 945 字,大约阅读时间需要 3 分钟。

问题描述
 
试题编号: 201312-1
试题名称: 出现次数最多的数
时间限制: 1.0s
内存限制: 256.0MB
问题描述:
问题描述
  给定n个正整数,找出它们中出现次数最多的数。如果这样的数有多个,请输出其中最小的一个。
输入格式
  输入的第一行只有一个正整数n(1 ≤ n ≤ 1000),表示数字的个数。
  输入的第二行有n个整数s
1, s
2, …, s
n (1 ≤ s
i ≤ 10000, 1 ≤ i ≤ n)。相邻的数用空格分隔。
输出格式
  输出这n个次数中出现次数最多的数。如果这样的数有多个,输出其中最小的一个。
样例输入
6
10 1 10 20 30 20
样例输出
10
1 #include
2 #include
3 #include
4 #include
5 #include
6 using namespace std; 7 const int maxn=10007; 8 int num[maxn]; 9 int n;10 int main()11 {12 //freopen("in.txt","r",stdin);13 int a;14 scanf("%d",&n);15 memset(num,0,sizeof(num));16 for(int i=1;i<=n;i++)17 {18 scanf("%d",&a);19 num[a]++;20 }21 int point=0;22 for(int i=0;i
num[point]) point=i;25 }26 printf("%d\n",point);27 return 0;28 }

 

转载于:https://www.cnblogs.com/codeyuan/p/4374621.html

你可能感兴趣的文章
实用Android开发工具和资源精选
查看>>
TileMap
查看>>
JS属性大全
查看>>
java复制文件
查看>>
第一册:lesson seventy nine.
查看>>
GCD的同步异步串行并行、NSOperation和NSOperationQueue一级用dispatch_once实现单例
查看>>
团队作业
查看>>
数据持久化时的小bug
查看>>
mysql中key 、primary key 、unique key 与index区别
查看>>
bzoj2257
查看>>
Linux查看文件编码格式及文件编码转换<转>
查看>>
Leetcode: Find Leaves of Binary Tree
查看>>
Vue 模板解释
查看>>
http://www.bootcss.com/
查看>>
20145308 《网络对抗》 注入shellcode+Return-to-libc攻击 学习总结
查看>>
将多张图片和文字合成一张图片
查看>>
自己动手写ORM(01):解析表达式树生成Sql碎片
查看>>
如何使用USBWebserver在本机快速建立网站测试环境
查看>>
百度Ueditor编辑器的Html模式自动替换样式的解决方法
查看>>
变量提升
查看>>