来泡池子了的西红柿很奔放
来泡池子了的西红柿很奔放
全部文章
分类
归档
标签
去牛客网
登录
/
注册
来泡池子了的西红柿很奔放的博客
全部文章
(共204篇)
题解 | #字符串通配符#
#include <stdio.h> #include <string.h> #include <ctype.h> #define LEN 100 // 递归函数进行通配符匹配 int wildcardMatch(const char *pattern, con...
2024-11-06
0
17
题解 | #矩阵乘法#
#include <stdio.h> int main() { int x, y, z; while (scanf("%d\n%d\n%d", &x, &y, &z) != EOF) { int A[x][y]...
2024-11-06
0
14
题解 | #成绩排序#
#include <stdio.h> int main() { int n, order; while (scanf("%d\n%d", &n, &order) != EOF) { char name[201][20]...
2024-11-05
0
16
题解 | #配置文件恢复#
#include <stdio.h> #include <string.h> #include <stdlib.h> int main() { char input[21]; char command[6][21] = {"reset&q...
2024-11-05
0
11
题解 | #查找两个字符串a,b中的最长公共子串#
#include <stdio.h> #include <string.h> int main() { char a[301], b[301]; while (scanf("%s\n%s", a, b) != EOF) { ...
2024-11-05
0
18
题解 | #MP3光标位置#
#include <stdio.h> #include <string.h> int main() { int n; char s[101]; while (scanf("%d\n%s", &n, s) != EOF) {...
2024-11-05
0
11
题解 | #DNA序列#
#include <stdio.h> #include <string.h> #include <stdlib.h> int isGC(char a) { if(a == 'G' || a == 'C') return 1; return 0; }...
2024-11-05
0
11
题解 | #查找输入整数二进制中1的个数#
#include <stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { int counter = 0; while(n != 0) { ...
2024-11-05
0
11
题解 | #放苹果#
#include <stdio.h> int main() { int m,n; while (scanf("%d %d", &m, &n) != EOF) { int dp[11][11] = {0}; ...
2024-11-05
0
12
题解 | #查找组成一个偶数最接近的两个素数#
#include <stdio.h> int isPrime(int a) { if(a < 2) return 0; for(int i = 2; i * i <= a; i++) { if(a % i == 0) return 0; ...
2024-11-04
0
10
首页
上一页
11
12
13
14
15
16
17
18
19
20
下一页
末页