题解 2973: 出现次数超过一半的数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2973: 出现次数超过一半的数

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[1005];int main(){    int n;    c……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n, i, j,a[1000],sum=1,max_sum=1,max_num;    scanf……

~~【Java】版本~~

摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main {     public static void main(String[] args……

出现次数超过一半的数(C语言版)

摘要:解题思路:这里要一个存储个数的数组b,然后把各个数的个数放到b中。注意事项:注意这里加减50的原因是,数组的下标没有负数,其他的就没啥了。参考代码:#include<stdio.h>int main(……

2973: 出现次数超过一半的数

摘要:```cpp //这道题我是用桶的思想去做的 //有一点需要注意,是n的范围,从-50开始,但数组的下标是不会有负数的所以加上50即可 #include using namespace std……