HeldKarp
The Held–Karp algorithm is an exact dynamic programming method for the traveling salesman problem (TSP), named after Michael Held and Richard M. Karp, who described it in 1962. It solves the problem of finding a minimum-cost Hamiltonian cycle in a complete weighted graph by systematically exploring subsets of vertices.
The approach fixes a starting vertex, s. Let V' be the set of the remaining vertices. For
Complexity-wise, the method examines all subsets of V', of which there are 2^{n-1}, and computes values for
Significance and usage: Held–Karp is one of the earliest exact algorithms for the TSP and established the