btreedart 1.0.1 copy "btreedart: ^1.0.1" to clipboard
btreedart: ^1.0.1 copied to clipboard

B+Tree Implementation on Dart

B+Tree Implementation on Dart.

  • Free software: GPL v3.0

Note

This project has not been tested in any way. Use at your own risk.

Documentation

This data structure is intended to be used as a key-value.

Constructor

 BTree bTree = BTree(degree: 1000); // degree - How many keys can a node contain

Insert

btree.insert("key1", "value1");

Update

btree.update("key1", "value0");

Search

btree.search("key1"); // return "value0"

Delete

btree.delete("key1"); // Deleting key key1. The next search will result in null
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

B+Tree Implementation on Dart

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on btreedart