2973: 出现次数超过一半的数 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;typedef long long ll;const ll N=1e5;int tong[N];int main(…… 题解列表 2024年07月15日 0 点赞 0 评论 48 浏览 评分:9.9
出现次数超过一半的数(C语言版) 摘要:解题思路:这里要一个存储个数的数组b,然后把各个数的个数放到b中。注意事项:注意这里加减50的原因是,数组的下标没有负数,其他的就没啥了。参考代码:#include<stdio.h>int main(…… 题解列表 2023年01月30日 0 点赞 0 评论 182 浏览 评分:9.9