Hi guys!
The question actually relates to general programming, not to a certain language.
For a driving directions application, when you compose a graph of a city with more than a thousand of points, how do you let the machine know what points are adjacent to a certain one? You know that the closest one is not necessarily directly linked. The only solution I yet see is storing successors and predecessors in the db. for each point. Or is this the way it works?
Thanks
The question actually relates to general programming, not to a certain language.
For a driving directions application, when you compose a graph of a city with more than a thousand of points, how do you let the machine know what points are adjacent to a certain one? You know that the closest one is not necessarily directly linked. The only solution I yet see is storing successors and predecessors in the db. for each point. Or is this the way it works?
Thanks
Comment