Skip to content

Commit

Permalink
fix: 电子书勘误
Browse files Browse the repository at this point in the history
  • Loading branch information
lucifer committed Oct 17, 2020
1 parent b42679f commit 5d1d27a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
* [小岛问题](thinkings/island.md)
* [最大公约数](thinkings/GCD.md)
* [并查集](thinkings/union-find.md)
* [前缀和](thinkings/prefix.md)
* [平衡二叉树专题](thinkings/balanced-tree.md)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,6 @@ for j in V to 0:

大家对此有何看法,欢迎给我留言,我有时间都会一一查看回答。更多算法套路可以访问我的 LeetCode 题解仓库:https://github.com/azl397985856/leetcode 。 目前已经 37K star 啦。
大家也可以关注我的公众号《力扣加加》带你啃下算法这块硬骨头。

![](https://tva1.sinaimg.cn/large/007S8ZIlly1gfcuzagjalj30p00dwabs.jpg)

![](https://tva1.sinaimg.cn/large/007S8ZIlly1ghluc9tkv6j30x20iwjtf.jpg)
2 changes: 1 addition & 1 deletion selected/serialize.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 文带你看懂二叉树的序列化
# 一文带你看懂二叉树的序列化

我们先来看下什么是序列化,以下定义来自维基百科:

Expand Down
2 changes: 1 addition & 1 deletion thinkings/balanced-tree.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 衡二叉树专题
# 平衡二叉树专题

力扣关于平衡二叉树的题目还是有一些的,并且都非常经典,推荐大家练习。今天给大家精选了 4 道题,如果你彻底搞明白了这几道题,碰到其他的平衡二叉树的题目应该不至于没有思路。当你领会了我的思路之后, 建议再找几个题目练手,巩固一下学习成果。

Expand Down
2 changes: 2 additions & 0 deletions thinkings/bloom-filter.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 布隆过滤器

## 场景

假设你现在要处理这样一个问题,你有一个网站并且拥有`很多`访客,每当有用户访问时,你想知道这个ip是不是第一次访问你的网站。
Expand Down
2 changes: 1 addition & 1 deletion thinkings/dynamic-programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function dp(n) {

> 虚线代表的是查表过程
这道题目是动态规划中最简单的问题了,因为设计到单个因素的变化,如果涉及到多个因素,就比较复杂了,比如著名的背包问题,挖金矿问题等。
这道题目是动态规划中最简单的问题了,因为只涉及到单个因素的变化,如果涉及到多个因素,就比较复杂了,比如著名的背包问题,挖金矿问题等。

对于单个因素的,我们最多只需要一个一维数组即可,对于如背包问题我们需要二维数组等更高纬度。

Expand Down

0 comments on commit 5d1d27a

Please sign in to comment.