8000 GitHub - gykeve/kdtree: Absolute balanced kdtree for fast kNN search.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Absolute balanced kdtree for fast kNN search.

License

Notifications You must be signed in to change notification settings

gykeve/kdtree

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kdtree

This is a (nearly absolute) balanced kdtree for fast kNN search with bad performance for dynamic addition and removal. In fact we adopt quick sort to rebuild the whole tree after changes of the 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 with the tree still kept balanced.

The thought of the implementation is posted here.

About

Absolute balanced kdtree for fast kNN search.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 99.8%
  • Makefile 0.2%
0