How do I determine where I can get to from the city (say New York) for 2 hours (can change) by car?
|
feedback
|
|
First create a graph :
Second Give a weight to each road = weight is the time from one city to another using this edge considering traffic etc... Use Dijkstra's algorithm for example to calculate the min distance between 2 cities Finally chose all the one with a weight less than 2 hours | |||
|
feedback
|