|
44 | 44 | * [一文看懂《最大子序列和问题》](./selected/LSS.md)
|
45 | 45 |
|
46 | 46 |
|
47 |
| -* [第四章 - 高频考题(简单 70 题)](collections/easy.md) |
| 47 | +* [第四章 - 高频考题(简单 73 题)](collections/easy.md) |
48 | 48 | * [面试题 17.12. BiNode](problems/binode-lcci.md)
|
49 | 49 | * [0001. 两数之和](problems/1.two-sum.md)
|
50 | 50 | * [0020. 有效的括号](problems/20.valid-parentheses.md)
|
51 | 51 | * [0021. 合并两个有序链表](problems/21.merge-two-sorted-lists.md)
|
52 | 52 | * [0026. 删除排序数组中的重复项](problems/26.remove-duplicates-from-sorted-array.md)
|
53 | 53 | * [0053. 最大子序和](problems/53.maximum-sum-subarray-cn.md)
|
| 54 | + * [0160. 相交链表](problems/160.Intersection-of-Two-Linked-Lists.md) 91 |
54 | 55 | * [0066. 加一](problems/66.plus-one.md) 91
|
55 | 56 | * [0088. 合并两个有序数组](problems/88.merge-sorted-array.md)
|
56 | 57 | * [0101. 对称二叉树](problems/101.symmetric-tree.md)
|
|
86 | 87 | * [1332. 删除回文子序列](problems/1332.remove-palindromic-subsequences.md)
|
87 | 88 |
|
88 | 89 |
|
89 |
| -* [第五章 - 高频考题(中等 112 题)](collections/medium.md) |
| 90 | +* [第五章 - 高频考题(中等 118 题)](collections/medium.md) |
90 | 91 | * [0002. 两数相加](problems/2.add-two-numbers.md)
|
91 | 92 | * [0003. 无重复字符的最长子串](problems/3.longest-substring-without-repeating-characters.md)
|
92 | 93 | * [0005. 最长回文子串](problems/5.longest-palindromic-substring.md)
|
|
109 | 110 | * [0055. 跳跃游戏](problems/55.jump-game.md)
|
110 | 111 | * [0056. 合并区间](problems/56.merge-intervals.md)
|
111 | 112 | * [0060. 第k个排列](problems/60.permutation-sequence.md)
|
| 113 | + * [0061. 旋转链表](../problems/61.Rotate-List.md) 91 |
112 | 114 | * [0062. 不同路径](problems/62.unique-paths.md)
|
113 | 115 | * [0073. 矩阵置零](problems/73.set-matrix-zeroes.md)
|
114 | 116 | * [0075. 颜色分类](problems/75.sort-colors.md)
|
|
162 | 164 | * [0445. 两数相加 II](problems/445.add-two-numbers-ii.md)
|
163 | 165 | * [0454. 四数相加 II](problems/454.4-sum-ii.md)
|
164 | 166 | * [0494. 目标和](problems/494.target-sum.md)
|
| 167 | + * [0513. 找树左下角的值](problems/513.find-bottom-left-tree-value.md) 91 |
165 | 168 | * [0516. 最长回文子序列](problems/516.longest-palindromic-subsequence.md)
|
166 | 169 | * [0518. 零钱兑换 II](problems/518.coin-change-2.md)
|
167 | 170 | * [0547. 朋友圈](problems/547.friend-circles.md)
|
|
181 | 184 | * [0912. 排序数组](problems/912.sort-an-array.md)
|
182 | 185 | * [0935. 骑士拨号器](problems/935.knight-dialer.md)
|
183 | 186 | * [0978. 最长湍流子数组](problems/978.longest-turbulent-subarray.md)
|
| 187 | + * [0987. 二叉树的垂序遍历](problems/987.vertical-order-traversal-of-a-binary-tree.md) 91 |
184 | 188 | * [1011. 在 D 天内送达包裹的能力](problems/1011.capacity-to-ship-packages-within-d-days.md)
|
185 | 189 | * [1014. 最佳观光组合](problems/1014.best-sightseeing-pair.md)
|
186 | 190 | * [1015. 可被 K 整除的最小整数](problems/1015.smallest-integer-divisible-by-k.md)
|
|
204 | 208 | * [1631. 最小体力消耗路径](problems/1631.path-with-minimum-effort.md)
|
205 | 209 |
|
206 | 210 |
|
207 |
| -* [第六章 - 高频考题(困难 30 题)](collections/hard.md) |
| 211 | +* [第六章 - 高频考题(困难 32 题)](collections/hard.md) |
208 | 212 | * [0004. 寻找两个正序数组的中位数](problems/4.median-of-two-sorted-arrays.md)
|
209 | 213 | * [0023. 合并K个升序链表](problems/23.merge-k-sorted-lists.md)
|
210 | 214 | * [0025. K 个一组翻转链表](problems/25.reverse-nodes-in-k-groups.md)
|
|
222 | 226 | * [0212. 单词搜索 II](problems/212.word-search-ii.md)
|
223 | 227 | * [0239. 滑动窗口最大值](problems/239.sliding-window-maximum.md)
|
224 | 228 | * [0295. 数据流的中位数](problems/295.find-median-from-data-stream.md)
|
| 229 | + * [0297. 二叉树的序列化与反序列化](problems/297.serialize-and-deserialize-binary-tree.md) 91 |
225 | 230 | * [0301. 删除无效的括号](problems/301.remove-invalid-parentheses.md)
|
226 | 231 | * [0312. 戳气球](problems/312.burst-balloons.md)
|
227 | 232 | * [0335. 路径交叉](problems/335.self-crossing.md)
|
228 | 233 | * [0460. LFU缓存](problems/460.lfu-cache.md)
|
229 | 234 | * [0472. 连接词](problems/472.concatenated-words.md)
|
230 | 235 | * [0488. 祖玛游戏](problems/488.zuma-game.md)
|
231 | 236 | * [0493. 翻转对](problems/493.reverse-pairs.md)
|
| 237 | + * [0768. 最多能完成排序的块 II](../problems/768.max-chunks-to-make-sorted-ii.md) 91 |
232 | 238 | * [0887. 鸡蛋掉落](problems/887.super-egg-drop.md)
|
233 | 239 | * [0895. 最大频率栈](problems/895.maximum-frequency-stack.md)
|
234 | 240 | * [1032. 字符流](problems/1032.stream-of-characters.md)
|
|
0 commit comments