cozylife/hackfastalgos

View on GitHub
lib/datastructure/kdtree.php

Summary

Maintainability
A
0 mins
Test Coverage
<?HH
/**
 * Hack Fast Algos
 *
 * Implementation of a KD Tree (K-dimensional tree)
 * Learn more
 * @link https://en.wikipedia.org/wiki/K-d_tree
 * @link http://programmizm.sourceforge.net/blog/2011/a-practical-implementation-of-kd-trees
 */

class KDTree
{

}