vote up 2 vote down star

I have collection of objects. Each object represents a coordinate range (ie, a block). What I want is to find the object near another coordinate in a given direction.

Is there a way to do this without traversing the whole collection all the time?

flag

Dupe of stackoverflow.com/questions/132319/…. Any reason to keep this version open? – S.Lott Nov 5 '08 at 13:53

3 Answers

vote up 2 vote down check

Please see this question.

link|flag
vote up 0 vote down

While inserting the objects .. sort them by the cordinates then use divide and conquer algorithm to search for your nearest possibility

link|flag
vote up 1 vote down

You may want to look into Binary Space Partitioning, and similar algorithms (Quadtree comes to mind, along with variations on Plane Sweet Algorithms)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.