主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
小王桐学
2024年3月3日 23:12
求众数 题解:C
P1810
回复 0
|
赞 0
|
浏览 500
#include <stdio.h> int Sort(int a[][100000],int n) { int i,j,t; for(i = 0; i < n-1; i++) for(j = 1; j < n-i; j++) if(a[0][j] < a[0][j-1]) { t = a[0][j]; a[0][j] = a[0][j-1]; a[0][j-1] = t; } } int main() { int n,a[2][100000],i,j; sca...
月溅星河
2023年11月5日 22:38
求众数 题解:
P1810
回复 0
|
赞 0
|
浏览 942
#include <bits/stdc++.h> int main(){ int n[100]; int m;//输入的次数 scanf("%d",&m); int i=0; while(i<m){ scanf("%d", &n[i]); i++; } int k[100]={0}; //遍历数组n,用数组k存储n中每个位置与之相同的数字的个数 for(int i=0;i<m;i++){ int count=1; for(int j=0;j<m;j++){ if...
蒋黎明
2022年2月21日 17:03
map简洁做法
P1810
回复 0
|
赞 0
|
浏览 4.6k
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; map<int,int> mp; for(int i = 0; i < n; i++){ int temp; ...
Abigail
2021年9月7日 13:05
求众数题解[c++][map]
P1810
回复 0
|
赞 1
|
浏览 8.2k
本文使用map存储各数字出现的次数,由于map的实现底层是红黑树,会自动根据key的大小来降序排列。因此当有两个众数时,排在前面的就是小的那个众数。 #include<iostream> #include<string> #include<map> using namespace std; int main() { map<int,int> res; int num = 0; scanf("%d...
题目
求众数
题解数量
4
发布题解
热门题解
1
求众数题解[c++][map]
2
求众数 题解:C
3
求众数 题解:
4
map简洁做法