鱼很腾
鱼很腾
全部文章
分类
归档
标签
去牛客网
登录
/
注册
鱼很腾的博客
全部文章
(共39篇)
题解 | 两数之和
#include<unordered_map> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vect...
2025-11-22
0
4
题解 | 【模板】序列操作
#include <stdio.h> #include<stdlib.h> int cmp1(const void* e1,const void* e2) { return *((int*)e1)-*(int*)e2; } int cmp2(const void*...
2025-11-20
0
19
题解 | 学生综合评估系统
#include<bits/stdc++.h> using namespace std; // 定义学生结构体 struct Student{ int id; int academic_score; int activity_score; }; // 评估函数...
2025-11-19
0
13
题解 | 两点间距离
/** * struct Point { * int x; * int y; * Point(int xx, int yy) : x(xx), y(yy) {} * }; */ #include<cmath> class Solution { public: /**...
2025-11-19
0
13
题解 | 最厉害的学生
#include <stdio.h> struct peo { char name[10]; int a; int b; int c; }; int main() { struct peo s[10000]; int max=0; ...
2025-11-19
0
13
题解 | 【模板】差分
#include <stdio.h> int main() { int n=0; int k=0; scanf("%d %d",&n,&k); long long f[100000000]; for(int i...
2025-11-18
0
15
题解 | 求阶乘
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 计算 n 的阶乘 * @param n int整型 * @return int整型 */ int factorialOfN(int n ) { // write code here ...
2025-10-26
0
14
题解 | 字符串操作
#include <stdio.h> int main() { int n=0; int m=0; scanf("%d %d",&n,&m); char a[102]={0}; scanf("%s&...
2025-10-26
0
21
题解 | 牛牛的考试
#include <stdio.h> #include <string.h> int main() { int T; // 输入题目数 T scanf("%d", &T); getchar(); // 吸收换行符 ...
2025-10-26
0
28
题解 | 凯撒加密
#include <stdio.h> #include<string.h> int main() { int n=0; scanf("%d",&n); char a[1001]={0}; scanf("%...
2025-10-25
0
29
首页
上一页
1
2
3
4
下一页
末页