Skip to content

Shared memory vantage point tree implementation, given a data set of d-dimensional points 𝑋. The structure is used to perform the π‘˜ nearest neighbor search (kNN) of the points on the vantage-point tree

License

GiorgosTsal/Vantage-Point-Tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

40 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Vantage-Point-Tree

Shared memory vantage point tree implementation, given a data set of d-dimensional points 𝑋. The structure is used to perform the π‘˜ nearest neighbor search (kNN) of the points on the vantage-point tree as introduced in the publication: Peter N Yianilos,a link Data structures and algorithms for nearest neighbor search in general metric spaces, In Fourth annual ACM-SIAM symposium on Discrete algorithms. Society for Industrial and Applied Mathe- matics Philadelphia, volume 93, pages 311–321, 1993.

How it works

The algorithm is based on a very simple idea: select a point as the vantage point, compute the distance of every point to the vantage point and split the points according to the median distance.

And then repeat the same on the inner and outer partitions until no point is left, to build a balanced binary tree.

About

Shared memory vantage point tree implementation, given a data set of d-dimensional points 𝑋. The structure is used to perform the π‘˜ nearest neighbor search (kNN) of the points on the vantage-point tree

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published