I have an A* search algorithm in Java, I want it to be able to print the tours so the user can see which routes it has tried and which is the best route. At the minute it just prints the best route, which is fine, I want it to do that but I also want it to print a list of the routes so you can see the worst and associated cost for each. From the code below if I print followedRoute that prints out every tour but can I print the cost of each? The algorithm works by finding each complete tour and the lowest cost of those, ideally I only want to print the complete tours so not {0}, {0, 3}, etc.
Below is the relevant code segment I believe, if you need to see anymore then please ask :)
Cities aux = currentCities;
ArrayList followedRoute = new ArrayList();
followedRoute.add(aux.number);
while (aux.level != 0) {
aux = aux.parent;
followedRoute.add(0, aux.number);
}
if (currentCities.level == distances.getCitiesCount()) {
solution = true;
bestRoute = followedRoute;
bestCost = currentCities.g;
} else {
for (int i=0; i<distances.getCitiesCount(); i++) {
// have we visited this city in the current followed route?
boolean visited = followedRoute.contains(i);
boolean isSolution = (followedRoute.size() == distances.getCitiesCount())&&(i == firstNode);
if (!visited || isSolution) {
Cities childCities = new Cities(i, currentCities.g + distances.getCost(currentCities.number, i),
getHeuristicValue(currentCities.level + 1), currentCities.level + 1);
childCities.parent = currentCities;
opened.add(childCities);
System.out.println(followedRoute);
}
}
}
Any help is massively appreciated! Thanks in advance :)
