0 purchases
btreedart
BTree 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
copied to clipboard
Insert
btree.insert("key1", "value1");
copied to clipboard
Update
btree.update("key1", "value0");
copied to clipboard
Search
btree.search("key1"); // return "value0"
copied to clipboard
Delete
btree.delete("key1"); // Deleting key key1. The next search will result in null
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.