N_zip
N_zip
全部文章
分类
归档
标签
去牛客网
登录
/
注册
N_zip的博客
全部文章
(共73篇)
题解 | 两个链表的第一个公共结点
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ #include <unordered_set> class Solutio...
2025-08-01
0
19
题解 | 删除链表的倒数第n个节点
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2025-08-01
0
20
题解 | 链表中倒数最后k个结点
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2025-08-01
0
19
题解 | 链表中环的入口结点
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ #include <unordered_set...
2025-08-01
0
22
题解 | 判断链表中是否有环
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} ...
2025-08-01
0
60
题解 | 链表内指定区间反转
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2025-07-31
0
20
题解 | 计算阶乘
#include <iostream> using namespace std; /*学会利用预处理,减小时间复炸度*/ const int mod = 1000000007; const int MAX_N = 1e6; // 根据题目可能的最大n值设定 // 预计算阶乘表 long...
2025-07-30
0
18
题解 | 斐波那契数列
/*递归会出现重复遍历的概况,比如,f(1)可能就会遍历x次 而用动态规划,就会好很多,因为计算过的数据存在数组里面,只需要取就好 极大节约了时间*/ #include <iostream> #include <vector> using namespace std; t...
2025-07-30
0
28
题解 | 括号匹配深度
#include <iostream> #include <string> #include <algorithm> using namespace std; int main() { string s; cin >> s; ...
2025-07-30
0
18
题解 | 小q的数列
#include <iostream> using namespace std; long long fx(long long x) { if(x==0) return 0; if(x==1) return 1; return fx(x/2)+fx(x%2); }...
2025-07-30
1
21
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页