Skip to content

Commit b3fd5ac

Browse files
committedJun 30, 2018
Update bloom filters description.
1 parent a2310c5 commit b3fd5ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ Below is the list of some of the most used Big O notations and their performance
232232
| **B-Tree** | log(n) | log(n) | log(n) | log(n) | |
233233
| **Red-Black Tree** | log(n) | log(n) | log(n) | log(n) | |
234234
| **AVL Tree** | log(n) | log(n) | log(n) | log(n) | |
235-
| **Bloom Filter** | - | 1 | 1 | - | |
235+
| **Bloom Filter** | - | 1 | 1 | - | False positives are possible while searching |
236236

237237
### Array Sorting Algorithms Complexity
238238

0 commit comments

Comments
 (0)
Please sign in to comment.