cozylife/hackfastalgos

View on GitHub
lib/datastructure/bplustree.php

Summary

Maintainability
A
0 mins
Test Coverage
<?HH
/**
 * Hack Fast Algos
 *
 * Implementation of a B+ Tree
 * Learn more @link https://en.wikipedia.org/wiki/B%2B_tree
 */

namespace HackFastAlgos\DataStructure;

class BPlusTree
{

}