Top "Traveling-salesman" questions

The "traveling salesman problem" is a classical computer science problem which involves finding the shortest path which could be taken by a hypothetical salesman to make a single visit to each location on a map (in a graph).

Brute force algorithm for the Traveling Salesman Problem in Java

I'm working on a project for a math class at school, and I chose to do mine on the Traveling …

java algorithm recursion traveling-salesman
traveling salesman problem, 2-opt algorithm c# implementation

Can someone give me a code sample of 2-opt algorithm for traveling salesman problem. For now im using nearest neighbour …

c# algorithm traveling-salesman
Optimal map routing with Google Maps

Is there a way using the Google Maps API to get back an "optimized" route given a set of waypoints (…

google-maps traveling-salesman
Simple hill climbing algorithm?

I'm trying to use the Simple hill climbing algorithm to solve the travelling salesman problem. I want to create a …

java algorithm artificial-intelligence traveling-salesman hill-climbing
Using A* to solve Travelling Salesman

I've been tasked to write an implementation of the A* algorithm (heuristics provided) that will solve the travelling salesman problem. …

algorithm a-star traveling-salesman
TSP - Branch and bound

I'm trying to solve the TSP with Branch and bound algorithm. I must build a matrix with costs but I …

algorithm traveling-salesman branch-and-bound
How can the A* algorithm be applied to the traveling salesman problem?

Possible Duplicate: Using A* to solve Travelling Salesman Problem I have recently learned that the A* algorithm can be applied …

algorithm a-star traveling-salesman
Crossover operation in genetic algorithm for TSP

I'm trying to solve the Travelling Salesman Problem (TSP) with Genetic algorithm. My genome is a permutation of a vertex …

c# algorithm artificial-intelligence genetic-algorithm traveling-salesman
What's the difference between traveling salesman and chinese traveling?

What's the Difference between traveling-salesman problem and chinese postman problem? For me both wants go to a destination, and then …

graph path traveling-salesman chinese-postman
Dynamic programming approach to TSP in Java

I'm a beginner, and I'm trying to write a working travelling salesman problem using dynamic programming approach. This is the …

java dynamic-programming traveling-salesman