Skip to content

Commit 61ff81d

Browse files
author
lucifer
committed
2 parents 9fc7e29 + df9d572 commit 61ff81d

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

problems/416.partition-equal-subset-sum.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
- DFS
3333
- [动态规划](https://github.com/azl397985856/leetcode/blob/master/thinkings/dynamic-programming.md)
3434

35-
- 动态规划
36-
3735
## 公司
3836

3937
- 阿里

problems/547.friend-circles.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ class Solution:
9292
- 时间复杂度:平均 $O(logN)$,最坏的情况是 $O(N)$
9393
- 空间复杂度:我们使用了 parent, 因此空间复杂度为 $O(N)$
9494

95-
欢迎关注我的公众号《脑洞前端》获取更多更新鲜的 LeetCode 题解
95+
## 相关专题
9696

97-
![](https://tva1.sinaimg.cn/large/007S8ZIlly1ghlu4wfjp9j31bi0hcq5s.jpg)
97+
- [并查集专题](https://github.com/azl397985856/leetcode/blob/master/thinkings/union-find.md)
98+
99+
大家对此有何看法,欢迎给我留言,我有时间都会一一查看回答。更多算法套路可以访问我的 LeetCode 题解仓库:https://github.com/azl397985856/leetcode 。 目前已经 36K star 啦。
100+
大家也可以关注我的公众号《力扣加加》带你啃下算法这块硬骨头。
101+
![](https://tva1.sinaimg.cn/large/007S8ZIlly1gfcuzagjalj30p00dwabs.jpg)

thinkings/binary-tree-traversal.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,10 @@ BFS 的关键点在于如何记录每一层次是否遍历完成, 我们可以
100100

101101
4. 如果不为 null,说明这一层还没完,则将其左右子树依次入队列。
102102

103-
相关问题[102.binary-tree-level-order-traversal](../problems/102.binary-tree-level-order-traversal.md)
103+
相关问题:
104+
105+
- [102.binary-tree-level-order-traversal](../problems/102.binary-tree-level-order-traversal.md)
106+
- [117. 填充每个节点的下一个右侧节点指针 II](https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node-ii/)
104107

105108
## 双色标记法
106109

0 commit comments

Comments
 (0)