TravelingSalesmanInCSharp
Using Nearest Neighbor and Two-optimization.
Solution is modified from https://github.com/GuyHarwood/TravellingSalesman/tree/master/TravellingSalesman .
(Tested in vs2008)
Algorithm is modified from https://github.com/samlbest/traveling-salesman .
Distance is calculated in double not integer by RouteCalculator.
Adjacency matrix is used to save the distance to decrease distance calculation time.
RouteCalculator uses adjacency matrix for total route distance calculation.