岂不闻天无绝人之路
岂不闻天无绝人之路
全部文章
分类
归档
标签
去牛客网
登录
/
注册
岂不闻天无绝人之路的博客
全部文章
(共2篇)
题解 | 数组中出现次数超过一半的数字
class Solution { public: int MoreThanHalfNum_Solution(vector<int>& numbers) { vector<int> cmt(32,0); for(int x : n...
2026-02-25
0
23
题解 | 反向输出一个四位数
#include <stdint.h> #include <stdio.h> int main() { int n=0; scanf("%d",&n); if (n<1000) printf("数字太...
2025-07-30
0
52