5 Best Algorithms for the Travelling Salesman Problem
Updated on Apr 01, 2025 | 8 min read | 1.4k views
Share:
For working professionals
For fresh graduates
More
Updated on Apr 01, 2025 | 8 min read | 1.4k views
Share:
The travelling salesman problem (TSP) is one of the classic problems that asks to find the shortest route possible for a salesman to visit all the cities at once and return to the starting point. By listening, the problem seems easy to solve. However, in reality, there’s no exact algorithm, that can solve the travelling salesman problem.
Over the years, numerous algorithms have been introduced, numerous methodologies are implemented. But, this NP-hard problem became more and more complex, as the cities increase.
But, you don’t need to fret, as we’ve got the best 5 algorithms for the travelling salesman problem, that balances speed and accuracy.
Get data science certification from the World’s top Universities. Learn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.
We’re going to dive deep into the top 5 algorithms for travelling salesman problem, analyzing them on the basis of time complexity, and their specific use case.
The Brute Force algorithm is the simplest and most direct approach to solving the TSP. It involves generating all possible permutations of the cities and calculating the total travel distance for each permutation. The solution is the permutation that yields the minimum distance.
How it Works for Travelling Salesman Problem:
Time Complexity:
The time complexity of the Brute Force algorithm is O(n!) because it generates and checks all permutations of the cities. This grows factorially with the number of cities, making it highly inefficient for larger instances of TSP.
Must Explore: What are Data Structures & Algorithm
When to Use for Travelling Salesman Problem:
The Brute Force approach is only feasible for small-sized instances, typically with fewer than 10 cities. As the number of cities increases, the algorithm becomes computationally impractical due to its exponential growth in complexity.
The Held-Karp algorithm is a more efficient solution to the TSP that uses dynamic programming. It improves upon the Brute Force approach by breaking the problem down into smaller subproblems and storing intermediate results, significantly reducing the number of redundant calculations.
How it Works for Travelling Salesman Problem:
dp(S,i) = min (dp (S∖{i},j) + dist (j,i)) ∀j∈S∖{i}
Also Explore: Top 14 Most Common Data Mining Algorithms You Should Know
Time Complexity:
The time complexity of the Held-Karp algorithm is O(n² * 2^n), where n is the number of cities. This is a significant improvement over brute force, but the algorithm still becomes computationally expensive for larger numbers of cities (typically beyond 20-25 cities).
When to Use for Travelling Salesman Problem:
The Held-Karp algorithm is effective for solving TSPs with a moderate number of cities (around 20 to 25). It provides an exact optimal solution and is often used in smaller, well-defined problems where precision is essential.
The Greedy Algorithm is a simple heuristic method that builds a solution step-by-step by always selecting the locally optimal choice, assuming that this will lead to a globally optimal solution. The Greedy approach is fast but does not guarantee an optimal solution.
How it Works for Travelling Salesman Problem:
Time Complexity:
The time complexity of the Greedy algorithm is O(n²), where n is the number of cities. This is because, for each city, the algorithm needs to evaluate the distances to all other cities.
When to Use for Travelling Salesman problem:
The Greedy Algorithm is suitable for large-scale problems where a quick, approximate solution is needed. It is used in real-world situations where finding an exact solution is not necessary and computational resources are limited.
Additionally, the Greedy algorithm does not guarantee an optimal solution for travelling salesman problem. In many cases, it gets stuck in local minima and may produce significantly worse solutions than the optimal one.
Also Read: Top 10 Data Structures & Algorithm Interview Questions & Answers
The Genetic Algorithm (GA) is an optimization method inspired by the process of natural selection. It uses a population of candidate solutions and evolves them over multiple generations using processes like selection, crossover, and mutation for the travelling salesman problem.
How it Works for Travelling Salesman Problem:
Time Complexity:
The time complexity of the Genetic Algorithm depends on the number of generations g, population size p, and the number of cities n. It can be estimated as O(g * p * n), where g is the number of generations, p is the population size, and n is the number of cities.
Travelling salesman problem use case:
Genetic algorithms are ideal when you need an approximate solution for large instances of the TSP. They are particularly useful in scenarios where finding an exact solution is computationally prohibitive, and a good-enough solution is acceptable.
Furthermore, genetic algorithms do not guarantee optimality for travelling salesman problem. Their performance depends heavily on the choice of parameters (such as mutation rate, population size, and number of generations) and may converge to a suboptimal solution.
Ant Colony Optimization (ACO) is a bio-inspired algorithm based on the behavior of ants searching for food. Ants leave pheromones on the paths they take, and subsequent ants are more likely to follow stronger pheromone trails, eventually converging on the shortest path.
How it Works for Travelling Salesman Problem:
Time Complexity:
The time complexity of ACO is approximately O(a * i * n), where “a” is the number of ants, “I” is the number of iterations, and “n” is the number of cities. The complexity depends on the number of ants and iterations, which are tunable parameters.
Travelling Salesman Problem Use Case:
ACO is useful for large-scale TSP instances, where finding an optimal solution is computationally expensive. It provides a good balance between computational efficiency and solution quality and is often used in real-world routing and logistics problems.
In addition, it also has a limitation. ACO is an approximate method and may not always converge to the optimal solution. Its performance depends on the parameter settings (e.g., pheromone evaporation rate, number of ants) and problem characteristics.
The Travelling Salesman Problem is a challenging optimization problem with wide-ranging real-world applications. While the Brute Force algorithm guarantees an optimal solution, its exponential time complexity makes it impractical for large problems. The Held-Karp algorithm offers a more efficient exact solution for moderately sized instances, but still suffers from exponential growth for larger datasets.
For larger problems or when exact solutions are not required, Greedy Algorithms, Genetic Algorithms, and Ant Colony Optimization provide feasible approximate solutions. Each of these heuristic and metaheuristic methods offers a different balance of computational efficiency and solution quality, making them suitable for various practical applications, from logistics and routing to manufacturing and data analysis.
Choosing the best algorithm depends on the problem size, available computational resources, and the acceptable trade-off between optimality and efficiency.
Unlock the power of data with our popular Data Science courses, designed to make you proficient in analytics, machine learning, and big data!
Elevate your career by learning essential Data Science skills such as statistical modeling, big data processing, predictive analytics, and SQL!
Stay informed and inspired with our popular Data Science articles, offering expert insights, trends, and practical tips for aspiring data professionals!
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
Start Your Career in Data Science Today
Top Resources