叶花永不相见
叶花永不相见
全部文章
分类
题解(183)
归档
标签
去牛客网
登录
/
注册
叶花永不相见的博客
全部文章
(共103篇)
题解 | #计算某字符出现次数#
#include<stdio.h> #include<string.h> int main() { char str[1000]; int count = 0; char ch; scanf("%[^\n]\n",str); scanf...
C
2022-06-17
0
295
题解 | #在行列都排好序的矩阵中找指定的数#
#include<stdio.h> int main() { int n, m, k; int flag = 0; int arr[1000][1000]; scanf("%d %d %d", &n, &m, &k); fo...
C
2022-06-15
0
295
题解 | #合并表记录#
#include<stdio.h> typedef struct KeyVal{ int index; int value; }KV; int main() { int n; scanf("%d", &n); KV arr[n]; ...
C
2022-06-11
1
337
题解 | #函数实现计算一个数的阶乘#
#include<stdio.h> long long factorial(long long n) { if (n==1) return 1; n*=factorial(n-1); return n; } int main() { lon...
C
2022-05-12
0
338
题解 | #公共子串计算#
#include <stdio.h> #include <string.h> int main() { char str[200], str2[200]; scanf("%s\n%s", str, str2); int max = 0; for...
C
2022-04-24
1
458
题解 | #矩阵乘法#
#include<stdio.h> int main() { int x, y, z; scanf("%d", &x); scanf("%d", &y); scanf("%d", &z); int arr1[100][100...
C
2022-04-20
0
318
题解 | #字符串通配符#
#include<stdio.h> #include<string.h> #include<ctype.h> int match(char *str1, char *str2) { if(str1[0]=='\0' && str2[0]=...
C
2022-04-18
1
452
题解 | #查找两个字符串a,b中的最长公共子串#
#include<stdio.h> #include<string.h> int main() { char s1[1000], s2[1000], arr[1000]; scanf("%s %s", s1, s2); if(strlen(s1) &g...
C
2022-04-16
1
306
题解 | #名字的漂亮度#
#include<stdio.h> #include<string.h> int cmp(int *a, int *b) { return *b - *a; } int main() { int n; char str[10001]; sc...
C
2022-04-15
0
248
题解 | #称砝码#
#include<stdio.h> #include<stdlib.h> int main() { int n; int cnt = 1; scanf("%d", &n); int *weight = (int *)malloc(siz...
C
2022-04-15
2
449
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页