Skip to content

Commit 6eb8dbd

Browse files
committed
更新题解列表
1 parent a306005 commit 6eb8dbd

7 files changed

+18
-14
lines changed

Diff for: docs/ch02/02.01/02.01.04-Linked-List-Basic-List.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
| 题号 | 标题 | 题解 | 标签 | 难度 |
44
| :------ | :------ | :------ | :------ | :------ |
55
| 0707 | [设计链表](https://leetcode.cn/problems/design-linked-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0707)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0707.md) | 设计、链表 | 中等 |
6-
| 0083 | [删除排序链表中的重复元素](https://leetcode.cn/problems/remove-duplicates-from-sorted-list/) | | 链表 | 简单 |
7-
| 0082 | [删除排序链表中的重复元素 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-list-ii/) | | 链表、双指针 | 中等 |
6+
| 0083 | [删除排序链表中的重复元素](https://leetcode.cn/problems/remove-duplicates-from-sorted-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0083)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0083.md) | 链表 | 简单 |
7+
| 0082 | [删除排序链表中的重复元素 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-list-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0082)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0082.md) | 链表、双指针 | 中等 |
88
| 0206 | [反转链表](https://leetcode.cn/problems/reverse-linked-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0206)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0206.md) | 递归、链表 | 简单 |
99
| 0092 | [反转链表 II](https://leetcode.cn/problems/reverse-linked-list-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0092)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0092.md) | 链表 | 中等 |
1010
| 0025 | [K 个一组翻转链表](https://leetcode.cn/problems/reverse-nodes-in-k-group/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0025)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0025.md) | 递归、链表 | 困难 |

Diff for: docs/ch02/02.01/02.01.10-Linked-List-Two-Pointers-List.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
| 0019 | [删除链表的倒数第 N 个结点](https://leetcode.cn/problems/remove-nth-node-from-end-of-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0019)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0019.md) | 链表、双指针 | 中等 |
99
| 0876 | [链表的中间结点](https://leetcode.cn/problems/middle-of-the-linked-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0876)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0876.md) | 链表、双指针 | 简单 |
1010
| 剑指 Offer 22 | [链表中倒数第k个节点](https://leetcode.cn/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof/) | | 链表、双指针 | 简单 |
11-
| 0143 | [重排链表](https://leetcode.cn/problems/reorder-list/) | | 栈、递归、链表、双指针 | 中等 |
11+
| 0143 | [重排链表](https://leetcode.cn/problems/reorder-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0143)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0143.md) | 栈、递归、链表、双指针 | 中等 |
1212
| 0002 | [两数相加](https://leetcode.cn/problems/add-two-numbers/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0002)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0002.md) | 递归、链表、数学 | 中等 |
1313
| 0445 | [两数相加 II](https://leetcode.cn/problems/add-two-numbers-ii/) | | 栈、链表、数学 | 中等 |
1414

Diff for: docs/ch05/05.03/05.03.09-Knapsack-Problem-List.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 背包问题题目
1+
# 05.03.09 背包问题题目
22

33
## 0-1 背包问题
44

@@ -15,7 +15,7 @@
1515
| 0279 | [完全平方数](https://leetcode.cn/problems/perfect-squares/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0279)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0279.md) | 广度优先搜索、数学、动态规划 | 中等 |
1616
| 0322 | [零钱兑换](https://leetcode.cn/problems/coin-change/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0322)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0322.md) | 广度优先搜索、数组、动态规划 | 中等 |
1717
| 0518 | [零钱兑换 II](https://leetcode.cn/problems/coin-change-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0518)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0518.md) | 数组、动态规划 | 中等 |
18-
| 0139 | [单词拆分](https://leetcode.cn/problems/word-break/) | | 字典树、记忆化搜索、数组、哈希表、字符串、动态规划 | 中等 |
18+
| 0139 | [单词拆分](https://leetcode.cn/problems/word-break/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0139)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0139.md) | 字典树、记忆化搜索、数组、哈希表、字符串、动态规划 | 中等 |
1919
| 0377 | [组合总和 IV](https://leetcode.cn/problems/combination-sum-iv/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0377)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0377.md) | 数组、动态规划 | 中等 |
2020
| 0638 | [大礼包](https://leetcode.cn/problems/shopping-offers/) | | 位运算、记忆化搜索、数组、动态规划、回溯、状态压缩 | 中等 |
2121
| 1449 | [数位成本和为目标值的最大数字](https://leetcode.cn/problems/form-largest-integer-with-digits-that-add-up-to-target/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/1449)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/1449.md) | 数组、动态规划 | 困难 |

Diff for: docs/ch05/05.05/05.05.09-Digit-DP-List.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 数位 DP 题目
1+
# 05.05.09 数位 DP 题目
22

33
| 题号 | 标题 | 题解 | 标签 | 难度 |
44
| :------ | :------ | :------ | :------ | :------ |

Diff for: docs/keys/Categories-List.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,8 @@
271271
| 题号 | 标题 | 题解 | 标签 | 难度 |
272272
| :------ | :------ | :------ | :------ | :------ |
273273
| 0707 | [设计链表](https://leetcode.cn/problems/design-linked-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0707)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0707.md) | 设计、链表 | 中等 |
274-
| 0083 | [删除排序链表中的重复元素](https://leetcode.cn/problems/remove-duplicates-from-sorted-list/) | | 链表 | 简单 |
275-
| 0082 | [删除排序链表中的重复元素 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-list-ii/) | | 链表、双指针 | 中等 |
274+
| 0083 | [删除排序链表中的重复元素](https://leetcode.cn/problems/remove-duplicates-from-sorted-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0083)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0083.md) | 链表 | 简单 |
275+
| 0082 | [删除排序链表中的重复元素 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-list-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0082)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0082.md) | 链表、双指针 | 中等 |
276276
| 0206 | [反转链表](https://leetcode.cn/problems/reverse-linked-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0206)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0206.md) | 递归、链表 | 简单 |
277277
| 0092 | [反转链表 II](https://leetcode.cn/problems/reverse-linked-list-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0092)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0092.md) | 链表 | 中等 |
278278
| 0025 | [K 个一组翻转链表](https://leetcode.cn/problems/reverse-nodes-in-k-group/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0025)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0025.md) | 递归、链表 | 困难 |
@@ -302,7 +302,7 @@
302302
| 0019 | [删除链表的倒数第 N 个结点](https://leetcode.cn/problems/remove-nth-node-from-end-of-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0019)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0019.md) | 链表、双指针 | 中等 |
303303
| 0876 | [链表的中间结点](https://leetcode.cn/problems/middle-of-the-linked-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0876)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0876.md) | 链表、双指针 | 简单 |
304304
| 剑指 Offer 22 | [链表中倒数第k个节点](https://leetcode.cn/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof/) | | 链表、双指针 | 简单 |
305-
| 0143 | [重排链表](https://leetcode.cn/problems/reorder-list/) | | 栈、递归、链表、双指针 | 中等 |
305+
| 0143 | [重排链表](https://leetcode.cn/problems/reorder-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0143)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0143.md) | 栈、递归、链表、双指针 | 中等 |
306306
| 0002 | [两数相加](https://leetcode.cn/problems/add-two-numbers/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0002)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0002.md) | 递归、链表、数学 | 中等 |
307307
| 0445 | [两数相加 II](https://leetcode.cn/problems/add-two-numbers-ii/) | | 栈、链表、数学 | 中等 |
308308

@@ -826,7 +826,7 @@
826826
| 0279 | [完全平方数](https://leetcode.cn/problems/perfect-squares/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0279)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0279.md) | 广度优先搜索、数学、动态规划 | 中等 |
827827
| 0343 | [整数拆分](https://leetcode.cn/problems/integer-break/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0343)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0343.md) | 数学、动态规划 | 中等 |
828828

829-
### 背包问题题目
829+
### 05.03.09 背包问题题目
830830

831831
#### 0-1 背包问题
832832

@@ -843,7 +843,7 @@
843843
| 0279 | [完全平方数](https://leetcode.cn/problems/perfect-squares/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0279)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0279.md) | 广度优先搜索、数学、动态规划 | 中等 |
844844
| 0322 | [零钱兑换](https://leetcode.cn/problems/coin-change/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0322)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0322.md) | 广度优先搜索、数组、动态规划 | 中等 |
845845
| 0518 | [零钱兑换 II](https://leetcode.cn/problems/coin-change-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0518)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0518.md) | 数组、动态规划 | 中等 |
846-
| 0139 | [单词拆分](https://leetcode.cn/problems/word-break/) | | 字典树、记忆化搜索、数组、哈希表、字符串、动态规划 | 中等 |
846+
| 0139 | [单词拆分](https://leetcode.cn/problems/word-break/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0139)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0139.md) | 字典树、记忆化搜索、数组、哈希表、字符串、动态规划 | 中等 |
847847
| 0377 | [组合总和 IV](https://leetcode.cn/problems/combination-sum-iv/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0377)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0377.md) | 数组、动态规划 | 中等 |
848848
| 0638 | [大礼包](https://leetcode.cn/problems/shopping-offers/) | | 位运算、记忆化搜索、数组、动态规划、回溯、状态压缩 | 中等 |
849849
| 1449 | [数位成本和为目标值的最大数字](https://leetcode.cn/problems/form-largest-integer-with-digits-that-add-up-to-target/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/1449)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/1449.md) | 数组、动态规划 | 困难 |
@@ -955,7 +955,7 @@
955955
| 0509 | [斐波那契数](https://leetcode.cn/problems/fibonacci-number/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0509)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0509.md) | 递归、记忆化搜索、数学、动态规划 | 简单 |
956956
| 1137 | [第 N 个泰波那契数](https://leetcode.cn/problems/n-th-tribonacci-number/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/1137)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/1137.md) | 记忆化搜索、数学、动态规划 | 简单 |
957957

958-
### 数位 DP 题目
958+
### 05.05.09 数位 DP 题目
959959

960960
| 题号 | 标题 | 题解 | 标签 | 难度 |
961961
| :------ | :------ | :------ | :------ | :------ |

Diff for: docs/keys/Solutions-List.md

+4
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@
6161
| 0079 | [单词搜索](https://leetcode.cn/problems/word-search/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0079)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0079.md) | 数组、回溯、矩阵 | 中等 |
6262
| 0080 | [删除有序数组中的重复项 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-array-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0080)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0080.md) | 数组、双指针 | 中等 |
6363
| 0081 | [搜索旋转排序数组 II](https://leetcode.cn/problems/search-in-rotated-sorted-array-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0081)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0081.md) | 数组、二分查找 | 中等 |
64+
| 0082 | [删除排序链表中的重复元素 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-list-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0082)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0082.md) | 链表、双指针 | 中等 |
65+
| 0083 | [删除排序链表中的重复元素](https://leetcode.cn/problems/remove-duplicates-from-sorted-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0083)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0083.md) | 链表 | 简单 |
6466
| 0088 | [合并两个有序数组](https://leetcode.cn/problems/merge-sorted-array/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0088)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0088.md) | 数组、双指针、排序 | 简单 |
6567
| 0089 | [格雷编码](https://leetcode.cn/problems/gray-code/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0089)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0089.md) | 位运算、数学、回溯 | 中等 |
6668
| 0090 | [子集 II](https://leetcode.cn/problems/subsets-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0090)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0090.md) | 位运算、数组、回溯 | 中等 |
@@ -100,8 +102,10 @@
100102
| 0136 | [只出现一次的数字](https://leetcode.cn/problems/single-number/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0136)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0136.md) | 位运算、数组 | 简单 |
101103
| 0137 | [只出现一次的数字 II](https://leetcode.cn/problems/single-number-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0137)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0137.md) | 位运算、数组 | 中等 |
102104
| 0138 | [复制带随机指针的链表](https://leetcode.cn/problems/copy-list-with-random-pointer/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0138)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0138.md) | 哈希表、链表 | 中等 |
105+
| 0139 | [单词拆分](https://leetcode.cn/problems/word-break/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0139)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0139.md) | 字典树、记忆化搜索、数组、哈希表、字符串、动态规划 | 中等 |
103106
| 0141 | [环形链表](https://leetcode.cn/problems/linked-list-cycle/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0141)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0141.md) | 哈希表、链表、双指针 | 简单 |
104107
| 0142 | [环形链表 II](https://leetcode.cn/problems/linked-list-cycle-ii/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0142)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0142.md) | 哈希表、链表、双指针 | 中等 |
108+
| 0143 | [重排链表](https://leetcode.cn/problems/reorder-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0143)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0143.md) | 栈、递归、链表、双指针 | 中等 |
105109
| 0144 | [二叉树的前序遍历](https://leetcode.cn/problems/binary-tree-preorder-traversal/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0144)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0144.md) | 栈、树、深度优先搜索、二叉树 | 简单 |
106110
| 0145 | [二叉树的后序遍历](https://leetcode.cn/problems/binary-tree-postorder-traversal/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0145)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0145.md) | 栈、树、深度优先搜索、二叉树 | 简单 |
107111
| 0147 | [对链表进行插入排序](https://leetcode.cn/problems/insertion-sort-list/) | [网页链接](https://datawhalechina.github.io/leetcode-notes/#/solutions/0147)[Github 链接](https://github.com/datawhalechina/leetcode-notes/blob/main/docs/solutions/0147.md) | 链表、排序 | 中等 |

Diff for: docs/solutions/0719.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# 0719. 找出第 k 小的距离对
1+
# 0719. 找出第 K 小的数对距离
22

33
- 标签:数组、双指针、二分查找、排序
44
- 难度:困难
55

66
## 题目链接
77

8-
- [0719. 找出第 k 小的距离对 - 力扣](https://leetcode.cn/problems/find-k-th-smallest-pair-distance/)
8+
- [0719. 找出第 K 小的数对距离 - 力扣](https://leetcode.cn/problems/find-k-th-smallest-pair-distance/)
99

1010
## 题目大意
1111

0 commit comments

Comments
 (0)