An open API service indexing awesome lists of open source software.

https://github.com/radosz99/tsp

Travelling Salesman Problem
https://github.com/radosz99/tsp

algo cpp exact-algorithms genetic-algorithms imga memetic-algorithm tabu-search

Last synced: about 1 year ago
JSON representation

Travelling Salesman Problem

Awesome Lists containing this project

README

          

**

Designing-effective-algorithms

**
**

Travelling Salesman Problem

**
_________________________________
**

Wrocław University of Science and Technology

**
**

Computer Science, Faculty of Electronics, 5 semester

**

Radosław Lis

- [General info](#desc)
- [Exact Algorithms](#ex)
* [Brute Force](#bf)
* [Branch & Bound](#bb)
* [Dynamic programming](#dp)
- [Local Search](#loc)
* [Tabu Search](#ts)
* [Simulated Annealing](#sa)
- [Genetic Algorithms](#gen)
* [Genetic Algorithm](#ga)
* [Memetic Algorithm](#ma)
* [Island Model Genetic Algorithm](#imga)


# General info
Implementations of well-known algorithms to solve Travelling Salesman Problem.
Innovative method in IMGA algorithm.


# Brute Force


## Branch & Bound


## Dynamic programming


## Exact Algorithms


# Local Search


## Tabu Search


## Simulated Annealing


# Genetic Algorithms


## Genetic Algorithm


## Memetic Algorithm


## Island Model Genetic Algorithm