daanjels / Lejos

Java Lejos projects
2 stars 1 forks source link

Deep search planner #11

Closed daanjels closed 7 years ago

daanjels commented 7 years ago

Build a method to find a route between two cities. Display the route in the console. Use a deep search algorithm.

daanjels commented 7 years ago

Created a method for a depth first search. Added a visited boolean to the Road-class. Used Planner to test the algorithm. It works!