万千少男的梦
万千少男的梦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
万千少男的梦的博客
全部文章
(共88篇)
题解 | #求1+2+3+...+n#
#include <regex> class Sum { public: Sum() { _ret+=_i; ++_i; } static int GetRet() { return _ret...
2024-04-17
1
155
题解 | #链表的回文结构#
class PalindromeList { public: struct ListNode* prevnode(struct ListNode*head) { struct ListNode*n1,*n2,*n3; n1 = nullptr; ...
2024-04-02
1
202
题解 | #合并两个排序的链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param pHead1 ListNode类...
2024-03-30
1
195
题解 | #链表内指定区间反转#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 ...
2024-03-30
1
168
题解 | #反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 ...
2024-03-29
1
208
题解 | #环形链表的约瑟夫问题#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param m int整型 * @return int整型 */ typedef struct listnode { int val;...
2024-03-28
1
179
题解 | #序列中删除指定数字#
#include <stdio.h> #include <stdio.h> void Delet(int* parr1, int ret) { while (*parr1) { if (*parr1 == ret) { ...
2024-02-22
1
197
题解 | #小乐乐走台阶#
#include <stdio.h> int Fib(int n) { if (n == 1) return 1; else if (n == 2) return 2; else return Fib(n-1) + ...
2024-01-16
1
172
题解 | #小乐乐排电梯#
#include <stdio.h> int Function(int n) { int k,SumTime = 0; if(n>12) { SumTime = ((n/12)*4)+2; return SumTime; ...
2024-01-15
1
221
题解 | #小乐乐定闹钟#
#include <stdio.h> int main() { //定义变量及输入 int n = 0; int m = 0; int k = 0; int count = 0; char ch; scanf("%d%c%...
2024-01-15
1
232
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页