An open API service indexing awesome lists of open source software.

https://github.com/begeekmyfriend/kdtree

Absolute balanced kdtree for fast kNN search.
https://github.com/begeekmyfriend/kdtree

algorithm k-means k-nearest-neighbours kd-tree kd-trees kdtrees kmeans knn knn-search tree-structure

Last synced: 12 days ago
JSON representation

Absolute balanced kdtree for fast kNN search.

Awesome Lists containing this project

README

        

# kdtree
This is a (nearly absolute) balanced kdtree for fast kNN search. It does not
support dynamic insertion and removal. Actually we adopt quick sort to rebuild
the whole tree after changes of nodes. We cache the added or the deleted nodes
which will not be actually mapped into the tree until the rebuild method to be
invoked. The good thing is we can always keep the tree balanced, and the bad
thing is we have to wait some time for the finish of tree rebuild. Moreover,
duplicated samples are allowed to be added.

The thought of the implementation is posted [here](https://www.joinquant.com/post/2843).