travelingsalesperson

import java.util.*; public class TravelingSalesPerson { public TravelingSalesPerson() { String[] cities = {"Boston", "L.A.", "Las Vegas", "Atlanta", "Philadelphia", "Chicago", "Houston"}; int[][] dist = {{0, 2982, 2715, 1080, 310, 982, 1849}, {2982, 0, 270, 2174, 2710, 2015, 1549}, {2715, 270, 0, 1959, 2473, 1747, 1473}, {1080, 2174, 1959, 0, 777, 715, 794 }, {310, 2710, 2473, 777, 0, 785, 1548}, {982, 2015, 1747, 715, 785, 0, 1084}, {1849, 1549, 1473, 794, 1548, 1084, 0}}; int start = 4; System.out.println(Arrays.toString(nearNeighbor(cities, dist, start).toArray())); } public ArrayList<String> nearNeighbor(String[] cities, int[][] dist, int start){ ArrayList<String> used = new ArrayList<String>(); ArrayList<String> nnCities = new ArrayList<String>(7); String startCity = cities[start]; used.add(startCity); int bottomMile = 999999; int spot = 0; String destCity = ""; while(used.size() < 7){ for(int x = 0; x < dist[start].length; x++){ if(dist[start][x] < bottomMile && dist[start][x] != 0 && !used.contains(cities[x])){ bottomMile = dist[start][x]; spot = x; destCity = cities[spot]; } } used.add(destCity); nnCities.add(cities[start] + " to " + destCity + " - " + bottomMile + " miles"); start = spot; spot = 0; bottomMile = 999999; } return nnCities; } }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.