" Let a network G = [N, A, C] be defined with
N the set of nodes, A the set of branches,
and C = [ cij] the matrix of costs.
That is, cij is the cost of moving or
the distance from node i to node j. The traveling salesman problem
requires the Hamiltonian cycle in G of minimal cost (Hamiltonian
cycle is a cycle passing through each node i in N exactly
once). "
The terms that will be used frequently throughout this section
are illustrated in the next figure:
Many algorithms have been proposed for the solution of this problem.
A typical solution process has several stages, where first an initial
tour is constructed, then any remaining points are inserted, and
then the existing tour is successively improved. There exist many
possible algorithms for each step.
The heuristics for the traveling salesman problem fall into the following
classes:
Most of the time, a combination of algorithms from both of these
classes is used. These are called composite procedures.
Below some of the most popular algorithms used will be explained. In each, we assume that
A detailed discussion of these algorithms can be found in (Golden,
Bodin, Doyle, Stewart, 1980)