Computer Science, asked by rohitbittu3045, 1 year ago

What is the branch and bound algorithm for tsp?

Answers

Answered by hemangihhh
0

Given a set of cities and distance between every pair of cities, the problem is to find the shortest possible tour that visits every city exactly once and returns to the starting point.

Euler1

For example, consider the graph shown in figure on right side. A TSP tour in the graph is 0-1-3-2-0. The cost of the tour is 10+25+30+15 which is 80.

Similar questions