Skip to content

An implementation of the Held-Karp algorithm for solving the travelling salesman problem

Notifications You must be signed in to change notification settings

sebastianlay/tod-eines-handlungsreisenden

Repository files navigation

Tod eines Handlungsreisenden

This is a C# implementation of the Held-Karp algorithm for solving the travelling salesman problem as part of the get int {IT} coding challenge.

Installation

Windows

Linux

Usage

  • Open a console or PowerShell and navigate to the folder with the extracted application
  • Run the application with the following optional arguments:
tod-eines-handlungsreisenden:
  A program to solve the travelling salesman problem

Usage:
  tod-eines-handlungsreisenden [options]

Options:
  --filepath <filepath>    Path to the CSV file containing the sites [default: msg_standorte_deutschland.csv]
  --brute-force            Use a brute force approach instead of the Held-Karp algorithm [default: False]
  --version                Show version information
  -?, -h, --help           Show help and usage information

Credits

This application uses the following libraries:

Solution

The Held-Karp algorithm is an obvious choice for this problem since it is way faster than brute forcing and guarantees to get the optimal solution. The solution for this particular CSV file can be found in a separate file.

About

An implementation of the Held-Karp algorithm for solving the travelling salesman problem

Resources

Stars

Watchers

Forks

Languages