btreedart

Creator: coderz1093

Last updated:

0 purchases

btreedart Image
btreedart Images

Languages

Categories

Add to Cart

Description:

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

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.