Travelling salesman problem


algorithm, complexity
(TSP or “shortest path”, US: “traveling”) Given a set of towns and the distances between them, determine the shortest path starting from a given town, passing through all the other towns and returning to the first town.
This is a famous problem with a variety of solutions of varying complexity and efficiency. The simplest solution (the brute force approach) generates all possible routes and takes the shortest. This becomes impractical as the number of towns, N, increases since the number of possible routes is !(N-1). A more intelligent algorithm (similar to iterative deepening) considers the shortest path to each town which can be reached in one hop, then two hops, and so on until all towns have been visited. At each stage the algorithm maintains a “frontier” of reachable towns along with the shortest route to each. It then expands this frontier by one hop each time.
Pablo Moscato’s TSP bibliography (http://densis.fee.unicamp.br/~moscato/TSPBIB_home.html). Fractals and the TSP (http://ing.unlp.edu.ar/cetad/mos/FRACTAL_TSP_home.html).
(1998-03-24)

Read Also:

  • Travelling wave

    noun 1. a wave carrying energy away from its source (as modifier): a travelling-wave aerial

  • Travelling-wave tube

    noun 1. an electronic tube in which an electron beam interacts with a distributed high-frequency magnetic field so that energy is transferred from the beam to the field

  • Travelog

    noun 1. a lecture, slide show, or motion picture describing travels. noun 1. a film, lecture, or brochure on travels and travelling

  • Travelogue

    noun 1. a lecture, slide show, or motion picture describing travels. noun 1. a film, lecture, or brochure on travels and travelling

  • Travelogues

    noun 1. a lecture, slide show, or motion picture describing travels. noun 1. a film, lecture, or brochure on travels and travelling


Disclaimer: Travelling salesman problem definition / meaning should not be considered complete, up to date, and is not intended to be used in place of a visit, consultation, or advice of a legal, medical, or any other professional. All content on this website is for informational purposes only.