I am trying to implement R-Tree in C++
.
While implementing Range Queries, I find that I have to check for the intersection of a point (with a given range), with a multi-dimensional hyper rectangle.
Any idea how this could be done? For 2D case
I know, but how to do it for N-Dimensional Case
?