Methods in pathfinder with parameters of type JPFMap |
abstract void |
JPathFinder.performBFS(int start,
int stop,
JPFMap map)
implements the breadth first search (performBFS) path search
- searches a road from given start to target city |
abstract void |
JPathFinder.performDFS(int start,
int stop,
JPFMap map)
implements the depth first search (performDFS) path search
- searches a road from given start to target city |
abstract void |
JPathFinder.searchForShortestPath(int start,
int stop,
JPFMap map)
implements the A* path search
- searches shortest road from given start to target city |
abstract void |
JPathFinder.searchForShortestTime(int start,
int stop,
JPFMap map)
implements the A* path search
- searches fastest road from given start to target city |