Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit b9f49d6

Browse files
update content
1 parent 67ffc1a commit b9f49d6

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

‎README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,12 @@ PDF 共两本,一本《labuladong 的算法秘籍》类似教材,帮你系
129129
### [本站简介](https://labuladong.github.io/article/fname.html?fname=home)
130130

131131
### [准备工作:安装刷题全家桶](https://labuladong.github.io/article/fname.html?fname=全家桶简介)
132-
* [配套浏览器刷题插件](https://labuladong.github.io/article/fname.html?fname=chrome插件简介)
132+
* [算法可视化功能简介(必读)](https://labuladong.github.io/article/fname.html?fname=可视化简介)
133+
* [配套 Chrome 刷题插件(必装)](https://labuladong.github.io/article/fname.html?fname=chrome插件简介)
133134
* [配套 vscode 刷题插件](https://labuladong.github.io/article/fname.html?fname=vscode插件简介)
134135
* [配套 JetBrains 刷题插件](https://labuladong.github.io/article/fname.html?fname=jb插件简介)
135-
* [算法可视化功能简介](https://labuladong.github.io/article/fname.html?fname=可视化简介)
136136
* [数据结构精品课](https://labuladong.github.io/article/fname.html?fname=ds课程简介)
137-
* [二叉树(递归)专题课](https://labuladong.github.io/article/fname.html?fname=tree课程简介)
137+
* [二叉树递归专题课](https://labuladong.github.io/article/fname.html?fname=tree课程简介)
138138
* [14 天刷题打卡挑战](https://labuladong.github.io/article/fname.html?fname=打卡挑战简介)
139139
* [学习本站所需的 Java 基础](https://labuladong.github.io/article/fname.html?fname=网站Java基础)
140140

‎动态规划系列/动态规划详解进阶.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ int coinChange(int[] coins, int amount) {
474474
- [旅游省钱大法:加权最短路径](https://labuladong.github.io/article/fname.html?fname=旅行最短路径)
475475
- [最优子结构原理和 dp 数组遍历方向](https://labuladong.github.io/article/fname.html?fname=最优子结构)
476476
- [本站简介](https://labuladong.github.io/article/fname.html?fname=home)
477-
- [算法可视化功能简介](https://labuladong.github.io/article/fname.html?fname=可视化简介)
477+
- [算法可视化功能简介(必读)](https://labuladong.github.io/article/fname.html?fname=可视化简介)
478478
- [算法学习和心流体验](https://labuladong.github.io/article/fname.html?fname=心流)
479479
- [算法时空复杂度分析实用指南](https://labuladong.github.io/article/fname.html?fname=时间复杂度)
480480
- [算法笔试「骗分」套路](https://labuladong.github.io/article/fname.html?fname=刷题技巧)

‎数据结构系列/二叉树总结.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ class Solution {
920920
- [东哥带你刷二叉树(序列化篇)](https://labuladong.github.io/article/fname.html?fname=二叉树的序列化)
921921
- [东哥带你刷二叉树(思路篇)](https://labuladong.github.io/article/fname.html?fname=二叉树系列1)
922922
- [东哥带你刷二叉树(构造篇)](https://labuladong.github.io/article/fname.html?fname=二叉树系列2)
923-
- [二叉树(递归)专题课](https://labuladong.github.io/article/fname.html?fname=tree课程简介)
923+
- [二叉树递归专题课](https://labuladong.github.io/article/fname.html?fname=tree课程简介)
924924
- [前缀树算法模板秒杀五道算法题](https://labuladong.github.io/article/fname.html?fname=trie)
925925
- [动态规划和回溯算法的思维转换](https://labuladong.github.io/article/fname.html?fname=单词拼接)
926926
- [后序遍历的妙用](https://labuladong.github.io/article/fname.html?fname=后序遍历)
@@ -931,7 +931,7 @@ class Solution {
931931
- [归并排序详解及应用](https://labuladong.github.io/article/fname.html?fname=归并排序)
932932
- [我的刷题心得](https://labuladong.github.io/article/fname.html?fname=算法心得)
933933
- [本站简介](https://labuladong.github.io/article/fname.html?fname=home)
934-
- [算法可视化功能简介](https://labuladong.github.io/article/fname.html?fname=可视化简介)
934+
- [算法可视化功能简介(必读)](https://labuladong.github.io/article/fname.html?fname=可视化简介)
935935
- [算法学习和心流体验](https://labuladong.github.io/article/fname.html?fname=心流)
936936

937937
</details><hr>

‎算法思维系列/学习数据结构和算法的高效方法.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ N 叉树的遍历框架,找出来了吧?你说,树这种结构重不重要
360360
- [东哥带你刷二叉树(纲领篇)](https://labuladong.github.io/article/fname.html?fname=二叉树总结)
361361
- [二分图判定算法](https://labuladong.github.io/article/fname.html?fname=二分图)
362362
- [二叉树的递归转迭代的代码框架](https://labuladong.github.io/article/fname.html?fname=迭代遍历二叉树)
363-
- [二叉树(递归)专题课](https://labuladong.github.io/article/fname.html?fname=tree课程简介)
363+
- [二叉树递归专题课](https://labuladong.github.io/article/fname.html?fname=tree课程简介)
364364
- [前缀树算法模板秒杀五道算法题](https://labuladong.github.io/article/fname.html?fname=trie)
365365
- [回溯算法秒杀所有排列/组合/子集问题](https://labuladong.github.io/article/fname.html?fname=子集排列组合)
366366
- [回溯算法解题套路框架](https://labuladong.github.io/article/fname.html?fname=回溯算法详解修订版)

‎高频面试系列/子集排列组合.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ void backtrack(int[] nums) {
989989
- [动态规划和回溯算法的思维转换](https://labuladong.github.io/article/fname.html?fname=单词拼接)
990990
- [回溯算法解题套路框架](https://labuladong.github.io/article/fname.html?fname=回溯算法详解修订版)
991991
- [我的刷题心得](https://labuladong.github.io/article/fname.html?fname=算法心得)
992-
- [算法可视化功能简介](https://labuladong.github.io/article/fname.html?fname=可视化简介)
992+
- [算法可视化功能简介(必读)](https://labuladong.github.io/article/fname.html?fname=可视化简介)
993993
- [算法时空复杂度分析实用指南](https://labuladong.github.io/article/fname.html?fname=时间复杂度)
994994
- [经典回溯算法:集合划分问题](https://labuladong.github.io/article/fname.html?fname=集合划分)
995995

@@ -1011,6 +1011,7 @@ void backtrack(int[] nums) {
10111011
| [254. Factor Combinations](https://leetcode.com/problems/factor-combinations/?show=1)🔒 | [254. 因子的组合](https://leetcode.cn/problems/factor-combinations/?show=1)🔒 |
10121012
| [368. Largest Divisible Subset](https://leetcode.com/problems/largest-divisible-subset/?show=1) | [368. 最大整除子集](https://leetcode.cn/problems/largest-divisible-subset/?show=1) |
10131013
| [491. Non-decreasing Subsequences](https://leetcode.com/problems/non-decreasing-subsequences/?show=1) | [491. 递增子序列](https://leetcode.cn/problems/non-decreasing-subsequences/?show=1) |
1014+
| [638. Shopping Offers](https://leetcode.com/problems/shopping-offers/?show=1) | [638. 大礼包](https://leetcode.cn/problems/shopping-offers/?show=1) |
10141015
| - | [剑指 Offer 38. 字符串的排列](https://leetcode.cn/problems/zi-fu-chuan-de-pai-lie-lcof/?show=1) |
10151016
| - | [剑指 Offer II 079. 所有子集](https://leetcode.cn/problems/TVdhkn/?show=1) |
10161017
| - | [剑指 Offer II 080. 含有 k 个元素的组合](https://leetcode.cn/problems/uUsW3B/?show=1) |

‎高频面试系列/打印素数.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ class Solution {
189189
<summary><strong>引用本文的文章</strong></summary>
190190

191191
- [丑数系列算法详解](https://labuladong.github.io/article/fname.html?fname=丑数)
192-
- [配套浏览器刷题插件](https://labuladong.github.io/article/fname.html?fname=chrome插件简介)
192+
- [配套 Chrome 刷题插件(必装)](https://labuladong.github.io/article/fname.html?fname=chrome插件简介)
193193

194194
</details><hr>
195195

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /