2973: 出现次数超过一半的数
摘要:```cpp
#include
#include
using namespace std;
int main()
{
int a[1001],b[1001],n;
mem……
2973: 出现次数超过一半的数
摘要:```cpp
//这道题我是用桶的思想去做的
//有一点需要注意,是n的范围,从-50开始,但数组的下标是不会有负数的所以加上50即可
#include
using namespace std……
2973: 出现次数超过一半的数
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[1005];int main(){ int n; c……
2973: 出现次数超过一半的数
摘要:解题思路:注意事项:参考代码:#includeusing namespace std;typedef long long ll;const ll N=1e5;int tong[N];int main(……
题解 2973: 出现次数超过一半的数
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,tong[1003];int main(){ cin>>n; for(……
编写题解 2973: 出现次数超过一半的数
摘要:解题思路:先计数排序 再判断注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=……