Skip to content

Commit 275c8ae

Browse files
committed
feat: add bloom filter chapter
1 parent 7702ff7 commit 275c8ae

5 files changed

Lines changed: 401 additions & 7 deletions

File tree

.github/workflows/docs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
test -s docs/08-graph.md
3131
test -s docs/09-btree.md
3232
test -s docs/10-hashmap.md
33+
test -s docs/11-bloom-filter.md
3334
test -s examples/README.md
3435
test -s tests/README.md
3536
test -s benches/README.md
@@ -43,6 +44,7 @@ jobs:
4344
test -s benches/graph_bench.rs
4445
test -s benches/btree_bench.rs
4546
test -s benches/hashmap_bench.rs
47+
test -s benches/bloom_filter_bench.rs
4648
test -s diagrams/README.md
4749
test -s diagrams/01-vector.mmd
4850
test -s diagrams/02-linked-list.mmd
@@ -54,6 +56,7 @@ jobs:
5456
test -s diagrams/08-graph.mmd
5557
test -s diagrams/09-btree.mmd
5658
test -s diagrams/10-hashmap.mmd
59+
test -s diagrams/11-bloom-filter.mmd
5760
test -s assets/README.md
5861
5962
grep -q "Vector" docs/SUMMARY.md

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ un algoritmo sea necesario para explicar la propia estructura.
4040
| 08 | Graph | `src/graph.rs` | benchmarked |
4141
| 09 | B-Tree | `src/btree.rs` | benchmarked |
4242
| 10 | HashMap | `src/hashmap.rs` | benchmarked |
43-
| 11 | Bloom Filter | `src/bloom_filter.rs` | planned |
43+
| 11 | Bloom Filter | `src/bloom_filter.rs` | benchmarked |
4444
| 12 | Skip List | `src/skip_list.rs` | planned |
4545

4646
Estados posibles: `planned`, `draft`, `implemented`, `tested`,

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ El checklist detallado vive en
2929
| 08 | Graph | benchmarked |
3030
| 09 | B-Tree | benchmarked |
3131
| 10 | HashMap | benchmarked |
32-
| 11 | Bloom Filter | planned |
32+
| 11 | Bloom Filter | benchmarked |
3333
| 12 | Skip List | planned |
3434

3535
## Alineacion RFC-0001

0 commit comments

Comments
 (0)