bao_hu_yuan_zhang
bao_hu_yuan_zhang
全部文章
分类
归档
标签
去牛客网
登录
/
注册
bao_hu_yuan_zhang的博客
全部文章
(共124篇)
题解 | #序列找数#C++暴力遍历解法
#include <iostream> #include<vector> #include<unordered_set> using namespace std; int main() { int i=0; int count=0; ...
2024-01-08
0
169
题解 | #链表中的节点每k个一组翻转#C++暴力遍历解法
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2024-01-08
0
216
题解 | #链表内指定区间反转#C++暴力解法
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2024-01-08
0
208
题解 | #反转链表#C++暴力解法
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2024-01-07
0
190
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页