TRAVELING SALESMAN PROBLEM
Tour Construction Algorithms

Nearest Neighbor Algorithm

(Rosenkrantz, Stearns, Lewis, 1974)

Worst Case Behavior:

where denotes the greatest integer smaller than or equal to x.

Number of Computations:

The nearest neighbor algorithm is ("order n square"), that is, the number of computations that it requires will not gorw faster than .

Note:

A modified application of Nearest Neighbor Algorithm is starting from each of the nodes in order, and seeing which starting node gives the best result. However, this modified algorithm is.