Skip to content

Commit

Permalink
feat:$160$297$513$61$768$987
Browse files Browse the repository at this point in the history
  • Loading branch information
lucifer committed Nov 27, 2020
1 parent 10c2cba commit c80758e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ leetcode 题解,记录自己的 leetcode 解题之路。
目前更新了 200 多道题解,加上专题涉及的题目,差不多有 **300 道**

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

### 数据结构与算法的总结(21 篇)
### 数据结构与算法的总结(22 篇)

- [数据结构总览](./thinkings/basic-data-structure.md)
- [链表专题](./thinkings/linked-list.md) 🆕
Expand Down
12 changes: 9 additions & 3 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,14 @@
* [一文看懂《最大子序列和问题》](./selected/LSS.md)


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


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


* [第六章 - 高频考题(困难 30 题)](collections/hard.md)
* [第六章 - 高频考题(困难 32 题)](collections/hard.md)
* [0004. 寻找两个正序数组的中位数](problems/4.median-of-two-sorted-arrays.md)
* [0023. 合并K个升序链表](problems/23.merge-k-sorted-lists.md)
* [0025. K 个一组翻转链表](problems/25.reverse-nodes-in-k-groups.md)
Expand All @@ -222,13 +226,15 @@
* [0212. 单词搜索 II](problems/212.word-search-ii.md)
* [0239. 滑动窗口最大值](problems/239.sliding-window-maximum.md)
* [0295. 数据流的中位数](problems/295.find-median-from-data-stream.md)
* [0297. 二叉树的序列化与反序列化](problems/297.serialize-and-deserialize-binary-tree.md) 91
* [0301. 删除无效的括号](problems/301.remove-invalid-parentheses.md)
* [0312. 戳气球](problems/312.burst-balloons.md)
* [0335. 路径交叉](problems/335.self-crossing.md)
* [0460. LFU缓存](problems/460.lfu-cache.md)
* [0472. 连接词](problems/472.concatenated-words.md)
* [0488. 祖玛游戏](problems/488.zuma-game.md)
* [0493. 翻转对](problems/493.reverse-pairs.md)
* [0768. 最多能完成排序的块 II](../problems/768.max-chunks-to-make-sorted-ii.md) 91
* [0887. 鸡蛋掉落](problems/887.super-egg-drop.md)
* [0895. 最大频率栈](problems/895.maximum-frequency-stack.md)
* [1032. 字符流](problems/1032.stream-of-characters.md)
Expand Down
1 change: 1 addition & 0 deletions collections/easy.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
- [0125. 验证回文串](../problems/125.valid-palindrome.md)
- [0136. 只出现一次的数字](../problems/136.single-number.md)
- [0155. 最小栈](../problems/155.min-stack.md)
- [0160. 相交链表](../problems/160.Intersection-of-Two-Linked-Lists.md) 91
- [0167. 两数之和 II 输入有序数组](../problems/167.two-sum-ii-input-array-is-sorted.md)
- [0169. 多数元素](../problems/169.majority-element.md)
- [0172. 阶乘后的零](../problems/172.factorial-trailing-zeroes.md)
Expand Down
2 changes: 2 additions & 0 deletions collections/hard.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,15 @@
- [0212. 单词搜索 II](../problems/212.word-search-ii.md)
- [0239. 滑动窗口最大值](../problems/239.sliding-window-maximum.md)
- [0295. 数据流的中位数](../problems/295.find-median-from-data-stream.md)
- [0297. 二叉树的序列化与反序列化](../problems/297.serialize-and-deserialize-binary-tree.md) 91
- [0301. 删除无效的括号](../problems/301.remove-invalid-parentheses.md)
- [0312. 戳气球](../problems/312.burst-balloons.md)
- [0335. 路径交叉](../problems/335.self-crossing.md)
- [0460. LFU 缓存](../problems/460.lfu-cache.md)
- [0472. 连接词](../problems/472.concatenated-words.md)
- [0488. 祖玛游戏](../problems/488.zuma-game.md)
- [0493. 翻转对](../problems/493.reverse-pairs.md)
- [0768. 最多能完成排序的块 II](../problems/768.max-chunks-to-make-sorted-ii.md) 91
- [0887. 鸡蛋掉落](../problems/887.super-egg-drop.md)
- [0895. 最大频率栈](../problems/895.maximum-frequency-stack.md)
- [1032. 字符流](../problems/1032.stream-of-characters.md)
Expand Down
3 changes: 3 additions & 0 deletions collections/medium.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
- [0055. 跳跃游戏](../problems/55.jump-game.md)
- [0056. 合并区间](../problems/56.merge-intervals.md)
- [0060. 第 k 个排列](../problems/60.permutation-sequence.md)
- [0061. 旋转链表](../problems/61.Rotate-List.md) 91
- [0062. 不同路径](../problems/62.unique-paths.md)
- [0073. 矩阵置零](../problems/73.set-matrix-zeroes.md)
- [0075. 颜色分类](../problems/75.sort-colors.md)
Expand Down Expand Up @@ -84,6 +85,7 @@
- [0454. 四数相加 II](../problems/454.4-sum-ii.md)
- [0494. 目标和](../problems/494.target-sum.md)
- [0516. 最长回文子序列](../problems/516.longest-palindromic-subsequence.md)
- [0513. 找树左下角的值](../problems/513.find-bottom-left-tree-value.md) 91
- [0518. 零钱兑换 II](../problems/518.coin-change-2.md)
- [0547. 朋友圈](../problems/547.friend-circles.md)
- [0560. 和为 K 的子数组](../problems/560.subarray-sum-equals-k.md)
Expand All @@ -102,6 +104,7 @@
- [0912. 排序数组](../problems/912.sort-an-array.md)
- [0935. 骑士拨号器](../problems/935.knight-dialer.md)
- [0978. 最长湍流子数组](../problems/978.longest-turbulent-subarray.md) 🆕
- [0987. 二叉树的垂序遍历](../problems/987.vertical-order-traversal-of-a-binary-tree.md) 91
- [1011. 在 D 天内送达包裹的能力](../problems/1011.capacity-to-ship-packages-within-d-days.md)
- [1014. 最佳观光组合](../problems/1014.best-sightseeing-pair.md)
- [1015. 可被 K 整除的最小整数](../problems/1015.smallest-integer-divisible-by-k.md)
Expand Down

0 comments on commit c80758e

Please sign in to comment.