出现次数超过一半的数(C语言版) 摘要:解题思路:这里要一个存储个数的数组b,然后把各个数的个数放到b中。注意事项:注意这里加减50的原因是,数组的下标没有负数,其他的就没啥了。参考代码:#include<stdio.h>int main(…… 题解列表 2023年01月30日 0 点赞 0 评论 193 浏览 评分:9.9
2973: 出现次数超过一半的数 摘要:```cpp //这道题我是用桶的思想去做的 //有一点需要注意,是n的范围,从-50开始,但数组的下标是不会有负数的所以加上50即可 #include using namespace std…… 题解列表 2023年03月11日 0 点赞 0 评论 125 浏览 评分:9.9
2973: 出现次数超过一半的数 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;typedef long long ll;const ll N=1e5;int tong[N];int main(…… 题解列表 2024年07月15日 0 点赞 0 评论 50 浏览 评分:9.9
没人写,就我来吧。 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,t,b[1005]={0}; cin>>n; i…… 题解列表 2022年10月24日 0 点赞 0 评论 188 浏览 评分:9.9
编写题解 2973: 出现次数超过一半的数 摘要:解题思路:先计数排序 再判断注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=…… 题解列表 2024年07月22日 0 点赞 0 评论 75 浏览 评分:9.9
2973: 出现次数超过一半的数 摘要:```cpp #include #include using namespace std; int main() { int a[1001],b[1001],n; mem…… 题解列表 2023年02月17日 0 点赞 0 评论 113 浏览 评分:9.9
2973——————出现次数超过一半的数 摘要: n = int(input()) m = input().split() if n == len(m): d = {…… 题解列表 2022年09月24日 0 点赞 0 评论 344 浏览 评分:9.9
题解 2973: 出现次数超过一半的数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,tong[1003];int main(){ cin>>n; for(…… 题解列表 2024年07月16日 0 点赞 0 评论 57 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, i, j,a[1000],sum=1,max_sum=1,max_num; scanf…… 题解列表 2023年06月11日 0 点赞 0 评论 71 浏览 评分:0.0
~~【Java】版本~~ 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String[] args…… 题解列表 2024年02月21日 0 点赞 0 评论 112 浏览 评分:0.0