Skip to content

Commit

Permalink
Implement a first 4-ary trie to represent posting lists.
Browse files Browse the repository at this point in the history
This is our base-line implementation.
  • Loading branch information
aneubeck committed Oct 30, 2024
1 parent ace76c1 commit 16ce6ac
Show file tree
Hide file tree
Showing 3 changed files with 824 additions and 0 deletions.
14 changes: 14 additions & 0 deletions crates/quaternary_trie/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "quarternary_trie"
version = "0.1.0"
edition = "2021"

[lib]
crate-type = ["lib", "staticlib"]
bench = false

[dependencies]
rand = "0.8"

[dev-dependencies]
itertools = "0.12"
Loading

0 comments on commit 16ce6ac

Please sign in to comment.