0

I have implemented the nearest neighbor heuristic for solving symmetric TSP problems. I was wondering if there is any relation between the solution found by the heuristic and the optimal solution?

Can we state theoretically how much higher the route length is in a worst case scenario?

user19553
  • 11
  • 1

1 Answers1

1

The book "In pursuit of the Traveling Salesman" (Cook) mentions that: nearest neighbor will never do worse than 1 + log(n)/2 times the cost of the optimal (which in turn comes from some paper).

It's a great book, described the other construction heuristics too.

Geoffrey De Smet
  • 26,223
  • 11
  • 73
  • 120