Skip to content

Commit

Permalink
更新题解列表
Browse files Browse the repository at this point in the history
  • Loading branch information
itcharge committed May 15, 2024
1 parent a306005 commit 6eb8dbd
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 14 deletions.
4 changes: 2 additions & 2 deletions docs/ch02/02.01/02.01.04-Linked-List-Basic-List.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
| 题号 | 标题 | 题解 | 标签 | 难度 |
| :------ | :------ | :------ | :------ | :------ |
| 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) | 设计、链表 | 中等 |
| 0083 | [删除排序链表中的重复元素](https://leetcode.cn/problems/remove-duplicates-from-sorted-list/) | | 链表 | 简单 |
| 0082 | [删除排序链表中的重复元素 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-list-ii/) | | 链表、双指针 | 中等 |
| 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) | 链表 | 简单 |
| 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) | 链表、双指针 | 中等 |
| 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) | 递归、链表 | 简单 |
| 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) | 链表 | 中等 |
| 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) | 递归、链表 | 困难 |
Expand Down
2 changes: 1 addition & 1 deletion docs/ch02/02.01/02.01.10-Linked-List-Two-Pointers-List.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| 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) | 链表、双指针 | 中等 |
| 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) | 链表、双指针 | 简单 |
| 剑指 Offer 22 | [链表中倒数第k个节点](https://leetcode.cn/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof/) | | 链表、双指针 | 简单 |
| 0143 | [重排链表](https://leetcode.cn/problems/reorder-list/) | | 栈、递归、链表、双指针 | 中等 |
| 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) | 栈、递归、链表、双指针 | 中等 |
| 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) | 递归、链表、数学 | 中等 |
| 0445 | [两数相加 II](https://leetcode.cn/problems/add-two-numbers-ii/) | | 栈、链表、数学 | 中等 |

4 changes: 2 additions & 2 deletions docs/ch05/05.03/05.03.09-Knapsack-Problem-List.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 背包问题题目
# 05.03.09 背包问题题目

## 0-1 背包问题

Expand All @@ -15,7 +15,7 @@
| 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) | 广度优先搜索、数学、动态规划 | 中等 |
| 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) | 广度优先搜索、数组、动态规划 | 中等 |
| 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) | 数组、动态规划 | 中等 |
| 0139 | [单词拆分](https://leetcode.cn/problems/word-break/) | | 字典树、记忆化搜索、数组、哈希表、字符串、动态规划 | 中等 |
| 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) | 字典树、记忆化搜索、数组、哈希表、字符串、动态规划 | 中等 |
| 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) | 数组、动态规划 | 中等 |
| 0638 | [大礼包](https://leetcode.cn/problems/shopping-offers/) | | 位运算、记忆化搜索、数组、动态规划、回溯、状态压缩 | 中等 |
| 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) | 数组、动态规划 | 困难 |
Expand Down
2 changes: 1 addition & 1 deletion docs/ch05/05.05/05.05.09-Digit-DP-List.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 数位 DP 题目
# 05.05.09 数位 DP 题目

| 题号 | 标题 | 题解 | 标签 | 难度 |
| :------ | :------ | :------ | :------ | :------ |
Expand Down
12 changes: 6 additions & 6 deletions docs/keys/Categories-List.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,8 @@
| 题号 | 标题 | 题解 | 标签 | 难度 |
| :------ | :------ | :------ | :------ | :------ |
| 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) | 设计、链表 | 中等 |
| 0083 | [删除排序链表中的重复元素](https://leetcode.cn/problems/remove-duplicates-from-sorted-list/) | | 链表 | 简单 |
| 0082 | [删除排序链表中的重复元素 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-list-ii/) | | 链表、双指针 | 中等 |
| 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) | 链表 | 简单 |
| 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) | 链表、双指针 | 中等 |
| 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) | 递归、链表 | 简单 |
| 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) | 链表 | 中等 |
| 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) | 递归、链表 | 困难 |
Expand Down Expand Up @@ -302,7 +302,7 @@
| 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) | 链表、双指针 | 中等 |
| 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) | 链表、双指针 | 简单 |
| 剑指 Offer 22 | [链表中倒数第k个节点](https://leetcode.cn/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof/) | | 链表、双指针 | 简单 |
| 0143 | [重排链表](https://leetcode.cn/problems/reorder-list/) | | 栈、递归、链表、双指针 | 中等 |
| 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) | 栈、递归、链表、双指针 | 中等 |
| 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) | 递归、链表、数学 | 中等 |
| 0445 | [两数相加 II](https://leetcode.cn/problems/add-two-numbers-ii/) | | 栈、链表、数学 | 中等 |

Expand Down Expand Up @@ -826,7 +826,7 @@
| 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) | 广度优先搜索、数学、动态规划 | 中等 |
| 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) | 数学、动态规划 | 中等 |

### 背包问题题目
### 05.03.09 背包问题题目

#### 0-1 背包问题

Expand All @@ -843,7 +843,7 @@
| 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) | 广度优先搜索、数学、动态规划 | 中等 |
| 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) | 广度优先搜索、数组、动态规划 | 中等 |
| 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) | 数组、动态规划 | 中等 |
| 0139 | [单词拆分](https://leetcode.cn/problems/word-break/) | | 字典树、记忆化搜索、数组、哈希表、字符串、动态规划 | 中等 |
| 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) | 字典树、记忆化搜索、数组、哈希表、字符串、动态规划 | 中等 |
| 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) | 数组、动态规划 | 中等 |
| 0638 | [大礼包](https://leetcode.cn/problems/shopping-offers/) | | 位运算、记忆化搜索、数组、动态规划、回溯、状态压缩 | 中等 |
| 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) | 数组、动态规划 | 困难 |
Expand Down Expand Up @@ -955,7 +955,7 @@
| 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) | 递归、记忆化搜索、数学、动态规划 | 简单 |
| 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) | 记忆化搜索、数学、动态规划 | 简单 |

### 数位 DP 题目
### 05.05.09 数位 DP 题目

| 题号 | 标题 | 题解 | 标签 | 难度 |
| :------ | :------ | :------ | :------ | :------ |
Expand Down
4 changes: 4 additions & 0 deletions docs/keys/Solutions-List.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@
| 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) | 数组、回溯、矩阵 | 中等 |
| 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) | 数组、双指针 | 中等 |
| 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) | 数组、二分查找 | 中等 |
| 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) | 链表、双指针 | 中等 |
| 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) | 链表 | 简单 |
| 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) | 数组、双指针、排序 | 简单 |
| 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) | 位运算、数学、回溯 | 中等 |
| 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) | 位运算、数组、回溯 | 中等 |
Expand Down Expand Up @@ -100,8 +102,10 @@
| 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) | 位运算、数组 | 简单 |
| 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) | 位运算、数组 | 中等 |
| 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) | 哈希表、链表 | 中等 |
| 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) | 字典树、记忆化搜索、数组、哈希表、字符串、动态规划 | 中等 |
| 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) | 哈希表、链表、双指针 | 简单 |
| 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) | 哈希表、链表、双指针 | 中等 |
| 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) | 栈、递归、链表、双指针 | 中等 |
| 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) | 栈、树、深度优先搜索、二叉树 | 简单 |
| 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) | 栈、树、深度优先搜索、二叉树 | 简单 |
| 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) | 链表、排序 | 中等 |
Expand Down
4 changes: 2 additions & 2 deletions docs/solutions/0719.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# 0719. 找出第 k 小的距离对
# 0719. 找出第 K 小的数对距离

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

## 题目链接

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

## 题目大意

Expand Down

0 comments on commit 6eb8dbd

Please sign in to comment.