虚数五行区
虚数五行区
全部文章
分类
归档
标签
去牛客网
登录
/
注册
虚数五行区的博客
TA的专栏
174篇文章
0人订阅
C++题库
0篇文章
0人学习
C++题库
30篇文章
365人学习
小白的刷题日常
0篇文章
0人学习
虚数五行区解题中心
0篇文章
0人学习
虚数五行区解题中心
144篇文章
606人学习
全部文章
(共217篇)
题解 | #牛群的合并#
来自专栏
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ #include <vector> class S...
2023-09-11
0
289
题解 | #牛群编号的回文顺序II#
来自专栏
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ #include <ios> #include &...
2023-09-10
0
290
题解 | #牛的品种排序IV#
来自专栏
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2023-09-10
0
252
题解 | #牛群旋转#
来自专栏
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ #include <list> class Sol...
2023-09-10
0
253
题解 | #牛群分隔#
来自专栏
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ #include <cmath> class So...
2023-09-10
0
233
题解 | #牛牛队列成环#
来自专栏
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2023-09-10
0
244
题解 | #合并两群能量值#
来自专栏
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2023-09-10
0
241
题解 | #牛群的重新排列#
来自专栏
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2023-09-10
0
253
题解 | #牛群的重新分组#
来自专栏
class Solution { public: ListNode* reverseKGroup(ListNode* head, int k) { //找到每次翻转的尾部 ListNode* tail = head; //遍历k次到尾部 ...
算法题
C++
2023-09-08
0
239
题解 | #调整牛群顺序#
来自专栏
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2023-09-07
0
299
首页
上一页
8
9
10
11
12
13
14
15
16
17
下一页
末页