user1370684
user1370684

Reputation: 21

Any good range Query library(using K-D tree, quad tree or R-tree) in C++

I used this library before http://www.cs.umd.edu/~mount/ANN/. However, they don't provide range query implementations. I Guess is there a C++ range-query implementation (Both circle or rectangle), to query two-dimensional data.

Thanks.

Upvotes: 2

Views: 6702

Answers (1)

the_ducky
the_ducky

Reputation: 185

I use

boost::geometry::index::rtree. 

For more information, see here, and for an example here.

Upvotes: 3

Related Questions