Minimum TSP

In Minimum TSP, you are given a set CC of cities and distances between each distinct pair of cities. The goal is to find an ordering or tour of the cities, such that you visit each city exactly once and return to the origin city, that minimizes the length of the tour. This is the typical variation of TSP.

Parameters

  • VV: number of cities (nodes)
  • EE: number of roads (edges)

Filters

Computational Model

Randomization

Approximation

Algorithms Table

Displaying 3 of 3 algorithms

See more
Held–Karp algorithm1962O(V22V)O(V^2 2^V)O(V2V)O(V 2^V)
Miller-Tucker-Zemlin (MTZ) formulation 1960exp(V)\text{exp}(V)O(V4)O(V^4)
Dantzig-Fulkerson-Johnson (DFJ) formulation1954O(exp(V))O(\text{exp}(V))O(V22V)O(V^2 2^V)

Reductions Table

Insuffient Data to display table

Other relevant algorithms

Displaying 1 of 1 other relevant algorithms