Question 23
TSP
Use the distance matrix (and the sorted edge list) to construct TSP tours.
Based on the above data, answer the given subquestions.
Consider N cities on the Euclidean plane, for each city, begin at that city and compute a tour using Nearest Neighbour Heuristic. From the resulting N tours, select the cheapest tour. What can you conclude about the procedure?
This procedure will always return the optimal TSP tour.
This procedure will not always return the optimal TSP tour.
This procedure may not always terminate.
This procedure will always terminate.