叶花永不相见
叶花永不相见
全部文章
题解
归档
标签
去牛客网
登录
/
注册
叶花永不相见的博客
全部文章
/ 题解
(共96篇)
题解 | #判断一个链表是否为回文结构#
/** * struct ListNode { * int val; * struct ListNode *next; * }; * * C语言声明定义全局变量请加上static,防止重复定义 */ /** * * @param head ListNode类 the head ...
C
2022-06-30
0
332
题解 | #链表中倒数最后k个结点#
/** * struct ListNode { * int val; * struct ListNode *next; * }; * * C语言声明定义全局变量请加上static,防止重复定义 */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可...
C
2022-06-30
0
310
题解 | #反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; * * C语言声明定义全局变量请加上static,防止重复定义 */ /** * * @param pHead ListNode类 * @ret...
C
2022-06-29
0
322
题解 | #计算某字符出现次数#
#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
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页