|
144 | 144 |
|
145 | 145 | ###### 0028. 实现 strStr()、0459. 重复的子字符串、0686. 重复叠加字符串匹配、0796. 旋转字符串
|
146 | 146 |
|
147 |
| -### [字典树题目](../../Contents/06.String/03.String-Multi-Pattern-Matching/01.Trie/02.Trie-List.md) |
| 147 | +### [字典树题目](../../Contents/06.String/03.String-Multi-Pattern-Matching/02.Trie-List.md) |
148 | 148 |
|
149 | 149 | ###### 0208. 实现 Trie (前缀树)、0677. 键值映射、0648. 单词替换、0642. 设计搜索自动补全系统、0211. 添加与搜索单词 - 数据结构设计、0421. 数组中两个数的最大异或值、0212. 单词搜索 II、0425. 单词方块、0336. 回文对
|
150 | 150 |
|
151 | 151 | ## 07. 树
|
152 | 152 |
|
153 |
| -### [二叉树的遍历题目](../../Contents/07.Tree/01.Binary-Tree/02.Binary-Tree-Traverse/02.Binary-Tree-Traverse-List.md) |
| 153 | +### [二叉树的遍历题目](../../Contents/07.Tree/01.Binary-Tree/03.Binary-Tree-Traverse-List.md) |
154 | 154 |
|
155 | 155 | ###### 0144. 二叉树的前序遍历、0094. 二叉树的中序遍历、0145. 二叉树的后序遍历、0102. 二叉树的层序遍历、0103. 二叉树的锯齿形层序遍历、0107. 二叉树的层序遍历 II、0104. 二叉树的最大深度、0101. 对称二叉树、0112. 路径总和、0113. 路径总和 II、0236. 二叉树的最近公共祖先、0297. 二叉树的序列化与反序列化、0116. 填充每个节点的下一个右侧节点指针、0117. 填充每个节点的下一个右侧节点指针 II
|
156 | 156 |
|
157 |
| -### [二叉树的还原题目](../../Contents/07.Tree/01.Binary-Tree/03.Binary-Tree-Reduction/02.Binary-Tree-Reduction-List.md) |
| 157 | +### [二叉树的还原题目](../../Contents/07.Tree/01.Binary-Tree/05.Binary-Tree-Reduction-List.md) |
158 | 158 |
|
159 | 159 | ###### 0105. 从前序与中序遍历序列构造二叉树、0106. 从中序与后序遍历序列构造二叉树、0889. 根据前序和后序遍历构造二叉树
|
160 | 160 |
|
|
190 | 190 |
|
191 | 191 | ## 08. 图论
|
192 | 192 |
|
193 |
| -### [图的深度优先搜索题目](../../Contents/08.Graph/02.Graph-Traversal/01.Graph-DFS/02.Graph-DFS-List.md) |
| 193 | +### [图的深度优先搜索题目](../../Contents/08.Graph/02.Graph-Traversal/02.Graph-DFS-List.md) |
194 | 194 |
|
195 | 195 | ###### 0797. 所有可能的路径、0200. 岛屿数量、0133. 克隆图、0494. 目标和、0144. 二叉树的前序遍历、0094. 二叉树的中序遍历、0145. 二叉树的后序遍历、0589. N 叉树的前序遍历、0590. N 叉树的后序遍历、0841. 钥匙和房间、0129. 求根节点到叶节点数字之和、0323. 无向图中连通分量的数目、0684. 冗余连接、0802. 找到最终的安全状态、0785. 判断二分图、0886. 可能的二分法、0323. 无向图中连通分量的数目、0695. 岛屿的最大面积、0130. 被围绕的区域、0417. 太平洋大西洋水流问题、1020. 飞地的数量、1254. 统计封闭岛屿的数目、1034. 边框着色、剑指 Offer 13. 机器人的运动范围、0529. 扫雷游戏
|
196 | 196 |
|
197 |
| -### [图的广度优先搜索题目](../../Contents/08.Graph/02.Graph-Traversal/02.Graph-BFS/02.Graph-BFS-List.md) |
| 197 | +### [图的广度优先搜索题目](../../Contents/08.Graph/02.Graph-Traversal/04.Graph-BFS-List.md) |
198 | 198 |
|
199 | 199 | ###### 0797. 所有可能的路径、0286. 墙与门、0200. 岛屿数量、0752. 打开转盘锁、0279. 完全平方数、0133. 克隆图、0733. 图像渲染、0542. 01 矩阵、0322. 零钱兑换、0207. 课程表、0210. 课程表 II、1136. 平行课程、0323. 无向图中连通分量的数目、剑指 Offer 13. 机器人的运动范围
|
200 | 200 |
|
201 |
| -### [图的拓扑排序题目](../../Contents/08.Graph/02.Graph-Traversal/03.Graph-Topological-Sorting/02.Graph-Topological-Sorting-List.md) |
| 201 | +### [图的拓扑排序题目](../../Contents/08.Graph/02.Graph-Traversal/06.Graph-Topological-Sorting-List.md) |
202 | 202 |
|
203 | 203 | ###### 0210. 课程表 II、0802. 找到最终的安全状态、0851. 喧闹和富有
|
204 | 204 |
|
205 |
| -### [图的生成树题目](../../Contents/08.Graph/03.Gaph-Spanning-Tree/03.Gaph-Spanning-Tree-List.md) |
| 205 | +### [图的生成树题目](../../Contents/08.Graph/03.Gaph-Spanning-Tree/04.Gaph-Spanning-Tree-List.md) |
206 | 206 |
|
207 | 207 | ###### 1584. 连接所有点的最小费用、1631. 最小体力消耗路径、0778. 水位上升的泳池中游泳
|
208 | 208 |
|
209 |
| -### [单源最短路径题目](../../Contents/08.Graph/04.Graph-Shortest-Path/01.Graph-Single-Source-Shortest-Path/04.Graph-Single-Source-Shortest-Path-List.md) |
| 209 | +### [单源最短路径题目](../../Contents/08.Graph/04.Graph-Shortest-Path/05.Graph-Single-Source-Shortest-Path-List.md) |
210 | 210 |
|
211 | 211 | ###### 0407. 接雨水 II、0743. 网络延迟时间、0787. K 站中转内最便宜的航班、1631. 最小体力消耗路径、1786. 从第一个节点出发到最后一个节点的受限路径数
|
212 | 212 |
|
213 |
| -### [多源最短路径题目](../../Contents/08.Graph/04.Graph-Shortest-Path/02.Graph-Multi-Source-Shortest-Path/02.Graph-Multi-Source-Shortest-Path-List.md) |
| 213 | +### [多源最短路径题目](../../Contents/08.Graph/04.Graph-Shortest-Path/08.Graph-Multi-Source-Shortest-Path-List.md) |
214 | 214 |
|
215 | 215 | ###### 0815. 公交路线、1162. 地图分析
|
216 | 216 |
|
217 |
| -### [次短路径题目](../../Contents/08.Graph/04.Graph-Shortest-Path/03.Graph-The-Second-Shortest-Path/02.Graph-The-Second-Shortest-Path-List.md) |
| 217 | +### [次短路径题目](../../Contents/08.Graph/04.Graph-Shortest-Path/10.Graph-The-Second-Shortest-Path-List.md) |
218 | 218 |
|
219 | 219 | ###### 2045. 到达目的地的第二短时间
|
220 | 220 |
|
221 |
| -### [差分约束系统](../../Contents/08.Graph/04.Graph-Shortest-Path/04.Graph-System-Of-Difference-Constraints/02.Graph-System-Of-Difference-Constraints-List.md) |
| 221 | +### [差分约束系统](../../Contents/08.Graph/04.Graph-Shortest-Path/12.Graph-System-Of-Difference-Constraints-List.md) |
222 | 222 |
|
223 | 223 | ###### 0995. K 连续位的最小翻转次数、1109. 航班预订统计
|
224 | 224 |
|
225 |
| -### [二分图基础题目](../../Contents/08.Graph/05.Graph-Bipartite/01.Graph-Bipartite-Basic/02.Graph-Bipartite-Basic-List.md) |
| 225 | +### [二分图基础题目](../../Contents/08.Graph/05.Graph-Bipartite/02.Graph-Bipartite-Basic-List.md) |
226 | 226 |
|
227 | 227 | ###### 0785. 判断二分图
|
228 | 228 |
|
229 |
| -### [二分图最大匹配题目](../../Contents/08.Graph/05.Graph-Bipartite/02.Graph-Bipartite-Matching/03.Graph-Bipartite-Matching-List.md) |
| 229 | +### [二分图最大匹配题目](../../Contents/08.Graph/05.Graph-Bipartite/06.Graph-Bipartite-Matching-List.md) |
230 | 230 |
|
231 | 231 | ###### LCP 04. 覆盖、1947. 最大兼容性评分和
|
232 | 232 |
|
|
248 | 248 |
|
249 | 249 | ###### 0455. 分发饼干、0860. 柠檬水找零、 0056. 合并区间、0435. 无重叠区间、0452. 用最少数量的箭引爆气球、0055. 跳跃游戏、0045. 跳跃游戏 II、0392. 判断子序列、0122. 买卖股票的最佳时机 II、0561. 数组拆分 I、1710. 卡车上的最大单元数、1217. 玩筹码、1247. 交换字符使得字符串相同、1400. 构造 K 个回文字符串、0921. 使括号有效的最少添加、1029. 两地调度、1605. 给定行和列的和求可行矩阵、0135. 分发糖果、0053. 最大子序和、0376. 摆动序列、0738. 单调递增的数字、0402. 移掉 K 位数字、0861. 翻转矩阵后的得分
|
250 | 250 |
|
251 |
| -### [分治算法](../../Contents/09.Algorithm-Base/04.Divide-And-Conquer-Algorithm/02.Divide-And-Conquer-Algorithm-List.md) |
| 251 | +### [分治算法题目](../../Contents/09.Algorithm-Base/04.Divide-And-Conquer-Algorithm/02.Divide-And-Conquer-Algorithm-List.md) |
252 | 252 |
|
253 | 253 | ###### 0004. 寻找两个正序数组的中位数、0023. 合并K个升序链表、0053. 最大子序和、0241. 为运算表达式设计优先级、0169. 多数元素、0050. Pow(x, n)
|
254 | 254 |
|
255 |
| -### [位运算](../../Contents/09.Algorithm-Base/06.Bit-Operation/02.Bit-Operation-List.md) |
| 255 | +### [位运算题目](../../Contents/09.Algorithm-Base/06.Bit-Operation/02.Bit-Operation-List.md) |
256 | 256 |
|
257 | 257 | ###### 0504. 七进制数、0405. 数字转换为十六进制数、0190. 颠倒二进制位、0191. 位1的个数、0371. 两整数之和、0089. 格雷编码、0201. 数字范围按位与、0338. 比特位计数、0136. 只出现一次的数字、0137. 只出现一次的数字 II、260. 只出现一次的数字 III、1349. 参加考试的最大学生数、0645. 错误的集合
|
258 | 258 |
|
|
0 commit comments