We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95d596e commit 2570b34Copy full SHA for 2570b34
docs/09_集合/set.md
@@ -45,6 +45,7 @@ class SetADT(HashTable):
45
- 请你在 SetADT 基础上实现集合的 remove 操作和 pop 操作
46
- 你能尝试实现对称差操作吗?这里我没有实现,留给你作为练习
47
- 你知道如何重载 python 的内置运算符吗?这里我们实现 set 的集合操作就是用到了重载,请阅读相关 python 文档。
48
+- 当元素个数不多的时候,我们可以用 set 来判重,但是如果是大量元素会非常耗费内存。请你了解下 Bloom Filter
49
50
51
# 延伸阅读
0 commit comments