This commit is contained in:
bronku 2025-12-13 14:55:19 +01:00
parent 16d04f3e7c
commit bf4200e9e5
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
/target
.DS_Store
btree.idx
.stignore

View file

@ -1,7 +1,7 @@
use crate::config::MAX_KEYS;
use crate::node::*;
use crate::record::Record;
use crate::storage::Storage;
const MAX_KEYS: usize = 4;
pub struct BPlusTree<S> {
storage: S,

View file

@ -1 +1,2 @@
pub const DEGREE: usize = 2;
pub const MAX_KEYS: usize = 4;