来泡池子了的西红柿很奔放
来泡池子了的西红柿很奔放
全部文章
分类
归档
标签
去牛客网
登录
/
注册
来泡池子了的西红柿很奔放的博客
全部文章
(共204篇)
题解 | #判断链表中是否有环#
#include <stdbool.h> /** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param head ListNode类 * @return bool...
2024-11-20
0
13
题解 | #合并k个已排序的链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param lists ListNode类一...
2024-11-20
0
19
题解 | #合并两个排序的链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param pHead1 ListNode类...
2024-11-20
0
12
题解 | #链表内指定区间反转#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 ...
2024-11-20
0
12
题解 | #反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 ...
2024-11-19
0
9
题解 | #字符串最后一个单词的长度#
#include <stdio.h> #include <string.h> #include <stddef.h> int main() { char str[5002]; while (fgets(str, sizeof(str), stdin...
2024-11-15
0
12
题解 | #求最小公倍数#
#include <stdio.h> int main() { int a, b; while (scanf("%d %d", &a, &b) != EOF) { // 注意 while 处理多个 case // 64...
2024-11-09
0
15
题解 | #求解立方根#
#include <stdio.h> int main() { double val; while (scanf("%lf", &val) != EOF) { double i = 0; if(val >...
2024-11-09
0
14
题解 | #字符逆序#
#include <stdio.h> #include <string.h> #define MAX_LEN 10000 int main() { char str[MAX_LEN]; while (fgets(str, sizeof(str), stdin...
2024-11-09
0
14
题解 | #记负均正II#
#include <stdio.h> int main() { int sum = 0, num = 0, nnum = 0, temp; while (scanf("%d", &temp) != EOF) { if(temp...
2024-11-09
0
9
首页
上一页
7
8
9
10
11
12
13
14
15
16
下一页
末页