# An Empirical Analysis of Approximation Algorithms for the Euclidean   Traveling Salesman Problem

**Authors:** Yihui He, Ming Xiang

arXiv: 1705.09058 · 2017-05-26

## TL;DR

This paper empirically evaluates various approximation algorithms for the Euclidean TSP, comparing their efficiency and solution quality across datasets of different sizes, highlighting the strengths and limitations of each approach.

## Contribution

It provides a comprehensive analysis of greedy, 2-opt, and genetic algorithms for Euclidean TSP, including scalability and performance insights based on diverse datasets.

## Key findings

- Greedy and 2-opt algorithms are efficient for small datasets.
- Genetic algorithms achieve better solutions on larger datasets.
- Genetic algorithms have longer runtimes compared to greedy and 2-opt.

## Abstract

With applications to many disciplines, the traveling salesman problem (TSP) is a classical computer science optimization problem with applications to industrial engineering, theoretical computer science, bioinformatics, and several other disciplines. In recent years, there have been a plethora of novel approaches for approximate solutions ranging from simplistic greedy to cooperative distributed algorithms derived from artificial intelligence. In this paper, we perform an evaluation and analysis of cornerstone algorithms for the Euclidean TSP. We evaluate greedy, 2-opt, and genetic algorithms. We use several datasets as input for the algorithms including a small dataset, a mediumsized dataset representing cities in the United States, and a synthetic dataset consisting of 200 cities to test algorithm scalability. We discover that the greedy and 2-opt algorithms efficiently calculate solutions for smaller datasets. Genetic algorithm has the best performance for optimality for medium to large datasets, but generally have longer runtime. Our implementations is public available.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1705.09058/full.md

## Figures

5 figures with captions in the complete paper: https://tomesphere.com/paper/1705.09058/full.md

## References

15 references — full list in the complete paper: https://tomesphere.com/paper/1705.09058/full.md

---
Source: https://tomesphere.com/paper/1705.09058