Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 1488c7d

Browse files
author
杨世超
committed
更新题目链接列表
1 parent a130e43 commit 1488c7d

11 files changed

+32
-32
lines changed

‎docs/00_preface/00_06_categories_list.md‎

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@
287287

288288
## 第 2 章 链表
289289

290-
### 链表经典题目
290+
### 链表基础题目
291291

292292
| 标题 | 题解 | 标签 | 难度 |
293293
| :--- | :--- | :--- | :--- |
@@ -351,7 +351,7 @@
351351
| [0071. 简化路径](https://leetcode.cn/problems/simplify-path/) | [题解](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0001-0099/simplify-path.md) | 栈、字符串 | 中等 |
352352

353353

354-
### 单调栈
354+
### 单调栈题目
355355

356356
| 标题 | 题解 | 标签 | 难度 |
357357
| :--- | :--- | :--- | :--- |
@@ -566,7 +566,7 @@
566566
| [0732. 我的日程安排表 III](https://leetcode.cn/problems/my-calendar-iii/) | [题解](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0700-0799/my-calendar-iii.md) | 设计、线段树、二分查找、有序集合、前缀和 | 困难 |
567567

568568

569-
#### 扫描线问题
569+
#### 扫描线问题题目
570570

571571
| 标题 | 题解 | 标签 | 难度 |
572572
| :--- | :--- | :--- | :--- |
@@ -720,7 +720,7 @@
720720
| [2045. 到达目的地的第二短时间](https://leetcode.cn/problems/second-minimum-time-to-reach-destination/) | [题解](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/2000-2099/second-minimum-time-to-reach-destination.md) | 广度优先搜索、图、最短路 | 困难 |
721721

722722

723-
### 差分约束系统
723+
### 差分约束系统题目
724724

725725
| 标题 | 题解 | 标签 | 难度 |
726726
| :--- | :--- | :--- | :--- |
@@ -995,7 +995,7 @@
995995

996996
### 背包问题题目
997997

998-
#### 0-1 背包问题
998+
#### 0-1 背包问题题目
999999

10001000
| 标题 | 题解 | 标签 | 难度 |
10011001
| :--- | :--- | :--- | :--- |
@@ -1004,7 +1004,7 @@
10041004
| [1049. 最后一块石头的重量 II](https://leetcode.cn/problems/last-stone-weight-ii/) | [题解](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/1000-1099/last-stone-weight-ii.md) | 数组、动态规划 | 中等 |
10051005

10061006

1007-
#### 完全背包问题
1007+
#### 完全背包问题题目
10081008

10091009
| 标题 | 题解 | 标签 | 难度 |
10101010
| :--- | :--- | :--- | :--- |
@@ -1017,17 +1017,17 @@
10171017
| [1449. 数位成本和为目标值的最大数字](https://leetcode.cn/problems/form-largest-integer-with-digits-that-add-up-to-target/) | [题解](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/1400-1499/form-largest-integer-with-digits-that-add-up-to-target.md) | 数组、动态规划 | 困难 |
10181018

10191019

1020-
#### 多重背包问题
1020+
#### 多重背包问题题目
10211021

1022-
#### 分组背包问题
1022+
#### 分组背包问题题目
10231023

10241024
| 标题 | 题解 | 标签 | 难度 |
10251025
| :--- | :--- | :--- | :--- |
10261026
| [1155. 掷骰子等于目标和的方法数](https://leetcode.cn/problems/number-of-dice-rolls-with-target-sum/) | [题解](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/1100-1199/number-of-dice-rolls-with-target-sum.md) | 动态规划 | 中等 |
10271027
| [2585. 获得分数的方法数](https://leetcode.cn/problems/number-of-ways-to-earn-points/) | [题解](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/2500-2599/number-of-ways-to-earn-points.md) | 数组、动态规划 | 困难 |
10281028

10291029

1030-
#### 多维背包问题
1030+
#### 多维背包问题题目
10311031

10321032
| 标题 | 题解 | 标签 | 难度 |
10331033
| :--- | :--- | :--- | :--- |

‎docs/00_preface/00_07_interview_100_list.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139

140140
## 第 2 章 链表
141141

142-
### 链表经典题目
142+
### 链表基础题目
143143

144144
| 标题 | 题解 | 标签 | 难度 |
145145
| :--- | :--- | :--- | :--- |
@@ -187,7 +187,7 @@
187187
| [0032. 最长有效括号](https://leetcode.cn/problems/longest-valid-parentheses/) | [题解](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0001-0099/longest-valid-parentheses.md) | 栈、字符串、动态规划 | 困难 |
188188

189189

190-
### 单调栈
190+
### 单调栈题目
191191

192192
| 标题 | 题解 | 标签 | 难度 |
193193
| :--- | :--- | :--- | :--- |

‎docs/00_preface/00_08_interview_200_list.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191

192192
## 02. 链表
193193

194-
### 链表经典题目
194+
### 链表基础题目
195195

196196
| 标题 | 题解 | 标签 | 难度 |
197197
| :--- | :--- | :--- | :--- |
@@ -248,7 +248,7 @@
248248
| [0071. 简化路径](https://leetcode.cn/problems/simplify-path/) | [题解](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0001-0099/simplify-path.md) | 栈、字符串 | 中等 |
249249

250250

251-
### 单调栈
251+
### 单调栈题目
252252

253253
| 标题 | 题解 | 标签 | 难度 |
254254
| :--- | :--- | :--- | :--- |

‎docs/02_linked_list/02_01_linked_list_basic.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ def removeInside(self, index):
361361

362362
## 练习题目
363363

364-
- [链表经典题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#%E9%93%BE%E8%A1%A8%E7%BB%8F%E5%85%B8%E9%A2%98%E7%9B%AE)
364+
- [链表基础题目列表](https://github.com/itcharge/AlgoNote/blob/main/docs/00_preface/00_06_categories_list.md#%E9%93%BE%E8%A1%A8%E5%9F%BA%E7%A1%80%E9%A2%98%E7%9B%AE)
365365

366366
## 参考资料
367367

‎docs/03_stack_queue_hash_table/03_02_monotone_stack.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ class Solution:
270270

271271
## 练习题目
272272

273-
- [单调栈题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#%E5%8D%95%E8%B0%83%E6%A0%88)
273+
- [单调栈题目列表](https://github.com/itcharge/AlgoNote/blob/main/docs/00_preface/00_06_categories_list.md#%E5%8D%95%E8%B0%83%E6%A0%88%E9%A2%98%E7%9B%AE)
274274

275275
## 参考资料
276276

‎docs/06_graph/06_11_graph_system_of_difference_constraints.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@ def solve_difference_constraints(n, constraints):
121121

122122
## 练习题目
123123

124-
- [差分约束系统题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#%E5%B7%AE%E5%88%86%E7%BA%A6%E6%9D%9F%E7%B3%BB%E7%BB%9F)
124+
- [差分约束系统题目列表](https://github.com/itcharge/AlgoNote/blob/main/docs/00_preface/00_06_categories_list.md#%E5%B7%AE%E5%88%86%E7%BA%A6%E6%9D%9F%E7%B3%BB%E7%BB%9F%E9%A2%98%E7%9B%AE)

‎docs/06_graph/index.md‎

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
- [6.1 图的定义和分类](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_01_graph_basic.md)
44
- [6.2 图的存储结构和问题应用](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_02_graph_structure.md)
5-
- [图的深度优先搜索](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_03_graph_dfs.md)
6-
- [图的广度优先搜索](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_04_graph_bfs.md)
7-
- [图的拓扑排序](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_05_graph_topological_sorting.md)
8-
- [图的最小生成树](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_06_graph_minimum_spanning_tree.md)
9-
- [单源最短路径(一)](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_07_graph_shortest_path_01.md)
10-
- [单源最短路径(二)](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_08_graph_shortest_path_02.md)
11-
- [多源最短路径](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_09_graph_multi_source_shortest_path.md)
12-
- [次短路径](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_10_graph_the_second_shortest_path.md)
13-
- [差分约束系统](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_11_graph_system_of_difference_constraints.md)
14-
- [二分图基础](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_12_graph_bipartite_basic.md)
15-
- [二分图最大匹配](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_13_graph_bipartite_matching.md)
5+
- [6.3 图的深度优先搜索](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_03_graph_dfs.md)
6+
- [6.4 图的广度优先搜索](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_04_graph_bfs.md)
7+
- [6.5 图的拓扑排序](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_05_graph_topological_sorting.md)
8+
- [6.6 图的最小生成树](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_06_graph_minimum_spanning_tree.md)
9+
- [6.7 单源最短路径(一)](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_07_graph_shortest_path_01.md)
10+
- [6.8 单源最短路径(二)](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_08_graph_shortest_path_02.md)
11+
- [6.9 多源最短路径](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_09_graph_multi_source_shortest_path.md)
12+
- [6.10 次短路径](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_10_graph_the_second_shortest_path.md)
13+
- [6.11 差分约束系统](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_11_graph_system_of_difference_constraints.md)
14+
- [6.12 二分图基础](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_12_graph_bipartite_basic.md)
15+
- [6.13 二分图最大匹配](https://github.com/ITCharge/AlgoNote/tree/main/docs/06_graph/06_13_graph_bipartite_matching.md)

‎docs/08_dynamic_programming/08_05_knapsack_problem_01.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ class Solution:
264264

265265
## 练习题目
266266

267-
- [0-1 背包问题题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#0-1-%E8%83%8C%E5%8C%85%E9%97%AE%E9%A2%98)
267+
- [0-1 背包问题题目列表](https://github.com/itcharge/AlgoNote/blob/main/docs/00_preface/00_06_categories_list.md#0-1-%E8%83%8C%E5%8C%85%E9%97%AE%E9%A2%98%E9%A2%98%E7%9B%AE)
268268

269269

270270
## 参考资料

‎docs/08_dynamic_programming/08_06_knapsack_problem_02.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ class Solution:
238238

239239
## 练习题目
240240

241-
- [完全背包问题题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#0-1-%E8%83%8C%E5%8C%85%E9%97%AE%E9%A2%98)
241+
- [完全背包问题题目列表](https://github.com/itcharge/AlgoNote/blob/main/docs/00_preface/00_06_categories_list.md#%E5%AE%8C%E5%85%A8%E8%83%8C%E5%8C%85%E9%97%AE%E9%A2%98%E9%A2%98%E7%9B%AE)
242242

243243
## 参考资料
244244

‎docs/08_dynamic_programming/08_07_knapsack_problem_03.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class Solution:
206206

207207
## 练习题目
208208

209-
- [多重背包题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#0-1-%E8%83%8C%E5%8C%85%E9%97%AE%E9%A2%98)
209+
- [多重背包问题题目列表](https://github.com/itcharge/AlgoNote/blob/main/docs/00_preface/00_06_categories_list.md#%E5%A4%9A%E9%87%8D%E8%83%8C%E5%8C%85%E9%97%AE%E9%A2%98%E9%A2%98%E7%9B%AE)
210210

211211
## 参考资料
212212

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /