Skip to content

Commit c80758e

Browse files
author
lucifer
committed
feat:$160$297$513$61$768$987
1 parent 10c2cba commit c80758e

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ leetcode 题解,记录自己的 leetcode 解题之路。
111111
112112
目前更新了 200 多道题解,加上专题涉及的题目,差不多有 **300 道**
113113

114-
- [高频考题(简单 72 题)](./collections/easy.md)
115-
- [高频考题(中等 115 题)](./collections/medium.md)
116-
- [高频考题(困难 30 题)](./collections/hard.md)
114+
- [高频考题(简单 73 题)](./collections/easy.md)
115+
- [高频考题(中等 118 题)](./collections/medium.md)
116+
- [高频考题(困难 32 题)](./collections/hard.md)
117117

118-
### 数据结构与算法的总结(21 篇)
118+
### 数据结构与算法的总结(22 篇)
119119

120120
- [数据结构总览](./thinkings/basic-data-structure.md)
121121
- [链表专题](./thinkings/linked-list.md) 🆕

SUMMARY.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,14 @@
4444
* [一文看懂《最大子序列和问题》](./selected/LSS.md)
4545

4646

47-
* [第四章 - 高频考题(简单 70 题)](collections/easy.md)
47+
* [第四章 - 高频考题(简单 73 题)](collections/easy.md)
4848
* [面试题 17.12. BiNode](problems/binode-lcci.md)
4949
* [0001. 两数之和](problems/1.two-sum.md)
5050
* [0020. 有效的括号](problems/20.valid-parentheses.md)
5151
* [0021. 合并两个有序链表](problems/21.merge-two-sorted-lists.md)
5252
* [0026. 删除排序数组中的重复项](problems/26.remove-duplicates-from-sorted-array.md)
5353
* [0053. 最大子序和](problems/53.maximum-sum-subarray-cn.md)
54+
* [0160. 相交链表](problems/160.Intersection-of-Two-Linked-Lists.md) 91
5455
* [0066. 加一](problems/66.plus-one.md) 91
5556
* [0088. 合并两个有序数组](problems/88.merge-sorted-array.md)
5657
* [0101. 对称二叉树](problems/101.symmetric-tree.md)
@@ -86,7 +87,7 @@
8687
* [1332. 删除回文子序列](problems/1332.remove-palindromic-subsequences.md)
8788

8889

89-
* [第五章 - 高频考题(中等 112 题)](collections/medium.md)
90+
* [第五章 - 高频考题(中等 118 题)](collections/medium.md)
9091
* [0002. 两数相加](problems/2.add-two-numbers.md)
9192
* [0003. 无重复字符的最长子串](problems/3.longest-substring-without-repeating-characters.md)
9293
* [0005. 最长回文子串](problems/5.longest-palindromic-substring.md)
@@ -109,6 +110,7 @@
109110
* [0055. 跳跃游戏](problems/55.jump-game.md)
110111
* [0056. 合并区间](problems/56.merge-intervals.md)
111112
* [0060. 第k个排列](problems/60.permutation-sequence.md)
113+
* [0061. 旋转链表](../problems/61.Rotate-List.md) 91
112114
* [0062. 不同路径](problems/62.unique-paths.md)
113115
* [0073. 矩阵置零](problems/73.set-matrix-zeroes.md)
114116
* [0075. 颜色分类](problems/75.sort-colors.md)
@@ -162,6 +164,7 @@
162164
* [0445. 两数相加 II](problems/445.add-two-numbers-ii.md)
163165
* [0454. 四数相加 II](problems/454.4-sum-ii.md)
164166
* [0494. 目标和](problems/494.target-sum.md)
167+
* [0513. 找树左下角的值](problems/513.find-bottom-left-tree-value.md) 91
165168
* [0516. 最长回文子序列](problems/516.longest-palindromic-subsequence.md)
166169
* [0518. 零钱兑换 II](problems/518.coin-change-2.md)
167170
* [0547. 朋友圈](problems/547.friend-circles.md)
@@ -181,6 +184,7 @@
181184
* [0912. 排序数组](problems/912.sort-an-array.md)
182185
* [0935. 骑士拨号器](problems/935.knight-dialer.md)
183186
* [0978. 最长湍流子数组](problems/978.longest-turbulent-subarray.md)
187+
* [0987. 二叉树的垂序遍历](problems/987.vertical-order-traversal-of-a-binary-tree.md) 91
184188
* [1011. 在 D 天内送达包裹的能力](problems/1011.capacity-to-ship-packages-within-d-days.md)
185189
* [1014. 最佳观光组合](problems/1014.best-sightseeing-pair.md)
186190
* [1015. 可被 K 整除的最小整数](problems/1015.smallest-integer-divisible-by-k.md)
@@ -204,7 +208,7 @@
204208
* [1631. 最小体力消耗路径](problems/1631.path-with-minimum-effort.md)
205209

206210

207-
* [第六章 - 高频考题(困难 30 题)](collections/hard.md)
211+
* [第六章 - 高频考题(困难 32 题)](collections/hard.md)
208212
* [0004. 寻找两个正序数组的中位数](problems/4.median-of-two-sorted-arrays.md)
209213
* [0023. 合并K个升序链表](problems/23.merge-k-sorted-lists.md)
210214
* [0025. K 个一组翻转链表](problems/25.reverse-nodes-in-k-groups.md)
@@ -222,13 +226,15 @@
222226
* [0212. 单词搜索 II](problems/212.word-search-ii.md)
223227
* [0239. 滑动窗口最大值](problems/239.sliding-window-maximum.md)
224228
* [0295. 数据流的中位数](problems/295.find-median-from-data-stream.md)
229+
* [0297. 二叉树的序列化与反序列化](problems/297.serialize-and-deserialize-binary-tree.md) 91
225230
* [0301. 删除无效的括号](problems/301.remove-invalid-parentheses.md)
226231
* [0312. 戳气球](problems/312.burst-balloons.md)
227232
* [0335. 路径交叉](problems/335.self-crossing.md)
228233
* [0460. LFU缓存](problems/460.lfu-cache.md)
229234
* [0472. 连接词](problems/472.concatenated-words.md)
230235
* [0488. 祖玛游戏](problems/488.zuma-game.md)
231236
* [0493. 翻转对](problems/493.reverse-pairs.md)
237+
* [0768. 最多能完成排序的块 II](../problems/768.max-chunks-to-make-sorted-ii.md) 91
232238
* [0887. 鸡蛋掉落](problems/887.super-egg-drop.md)
233239
* [0895. 最大频率栈](problems/895.maximum-frequency-stack.md)
234240
* [1032. 字符流](problems/1032.stream-of-characters.md)

collections/easy.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- [0125. 验证回文串](../problems/125.valid-palindrome.md)
2323
- [0136. 只出现一次的数字](../problems/136.single-number.md)
2424
- [0155. 最小栈](../problems/155.min-stack.md)
25+
- [0160. 相交链表](../problems/160.Intersection-of-Two-Linked-Lists.md) 91
2526
- [0167. 两数之和 II 输入有序数组](../problems/167.two-sum-ii-input-array-is-sorted.md)
2627
- [0169. 多数元素](../problems/169.majority-element.md)
2728
- [0172. 阶乘后的零](../problems/172.factorial-trailing-zeroes.md)

collections/hard.md

+2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,15 @@
4141
- [0212. 单词搜索 II](../problems/212.word-search-ii.md)
4242
- [0239. 滑动窗口最大值](../problems/239.sliding-window-maximum.md)
4343
- [0295. 数据流的中位数](../problems/295.find-median-from-data-stream.md)
44+
- [0297. 二叉树的序列化与反序列化](../problems/297.serialize-and-deserialize-binary-tree.md) 91
4445
- [0301. 删除无效的括号](../problems/301.remove-invalid-parentheses.md)
4546
- [0312. 戳气球](../problems/312.burst-balloons.md)
4647
- [0335. 路径交叉](../problems/335.self-crossing.md)
4748
- [0460. LFU 缓存](../problems/460.lfu-cache.md)
4849
- [0472. 连接词](../problems/472.concatenated-words.md)
4950
- [0488. 祖玛游戏](../problems/488.zuma-game.md)
5051
- [0493. 翻转对](../problems/493.reverse-pairs.md)
52+
- [0768. 最多能完成排序的块 II](../problems/768.max-chunks-to-make-sorted-ii.md) 91
5153
- [0887. 鸡蛋掉落](../problems/887.super-egg-drop.md)
5254
- [0895. 最大频率栈](../problems/895.maximum-frequency-stack.md)
5355
- [1032. 字符流](../problems/1032.stream-of-characters.md)

collections/medium.md

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
- [0055. 跳跃游戏](../problems/55.jump-game.md)
3131
- [0056. 合并区间](../problems/56.merge-intervals.md)
3232
- [0060. 第 k 个排列](../problems/60.permutation-sequence.md)
33+
- [0061. 旋转链表](../problems/61.Rotate-List.md) 91
3334
- [0062. 不同路径](../problems/62.unique-paths.md)
3435
- [0073. 矩阵置零](../problems/73.set-matrix-zeroes.md)
3536
- [0075. 颜色分类](../problems/75.sort-colors.md)
@@ -84,6 +85,7 @@
8485
- [0454. 四数相加 II](../problems/454.4-sum-ii.md)
8586
- [0494. 目标和](../problems/494.target-sum.md)
8687
- [0516. 最长回文子序列](../problems/516.longest-palindromic-subsequence.md)
88+
- [0513. 找树左下角的值](../problems/513.find-bottom-left-tree-value.md) 91
8789
- [0518. 零钱兑换 II](../problems/518.coin-change-2.md)
8890
- [0547. 朋友圈](../problems/547.friend-circles.md)
8991
- [0560. 和为 K 的子数组](../problems/560.subarray-sum-equals-k.md)
@@ -102,6 +104,7 @@
102104
- [0912. 排序数组](../problems/912.sort-an-array.md)
103105
- [0935. 骑士拨号器](../problems/935.knight-dialer.md)
104106
- [0978. 最长湍流子数组](../problems/978.longest-turbulent-subarray.md) 🆕
107+
- [0987. 二叉树的垂序遍历](../problems/987.vertical-order-traversal-of-a-binary-tree.md) 91
105108
- [1011. 在 D 天内送达包裹的能力](../problems/1011.capacity-to-ship-packages-within-d-days.md)
106109
- [1014. 最佳观光组合](../problems/1014.best-sightseeing-pair.md)
107110
- [1015. 可被 K 整除的最小整数](../problems/1015.smallest-integer-divisible-by-k.md)

0 commit comments

Comments
 (0)