MountainsHao
MountainsHao
全部文章
分类
归档
标签
去牛客网
登录
/
注册
MountainsHao的博客
全部文章
(共74篇)
题解 | #后缀子串排序#
#include <stdio.h> #include <string.h> #include <stdlib.h> #define MAX 101 int cmp(const void* a, const void* b) { return strcm...
2024-03-26
0
160
题解 | #有效括号序列#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s string字符串 * @return bool布尔型 */ #include <stdbool.h> #include <stdlib.h> #i...
2024-03-25
0
200
题解 | #【模板】栈#
#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_STACK_SIZE 100000 typedef struct stack { int st[MAX_STA...
2024-03-25
0
222
题解 | #数字反转#
#include <math.h> #include <stdio.h> int reverse(int x) { int reversed = 0; while (x != 0) { int c = x % 10; rev...
2024-03-23
0
189
题解 | #鸡兔同笼#
#include <stdio.h> int max_num(int n) { if (n % 2 != 0) return 0; else return n / 2; } int min_num(int n) { if (n % 2 != 0) { ...
2024-03-23
0
182
题解 | #最大序列和#
#include <stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { int s[n], dp[n]; for (int i = 0; ...
2024-03-23
0
144
题解 | #今年的第几天?#
#include <stdio.h> int main() { int a, b,c; int month[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; while (scanf("%d %d %d"...
2024-03-23
0
157
题解 | #求最大最小数#
#include <stdio.h> int main() { int n; while (scanf("%d",&n) != EOF) { int max,min; int a[n]; sca...
2024-03-23
0
156
题解 | #成绩排序#
#include <stdbool.h> #include <stdio.h> #include <stdlib.h> typedef struct student { int id; int score; } Student; // int ...
2024-03-23
0
183
题解 | #二叉搜索树#
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> typedef struct BTreeNode { int data; ...
2024-03-21
0
202
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页