Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 488 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 488 Bytes

TSP-Problem

The travelling salesman problem (also called the traveling salesperson problem[1] or TSP) asks the following question: "Given a list of cities and the distances between each pair of cities, what is the shortest possible route that visits each city exactly once and returns to the origin city?"

Algorithms used

a) Greedy

b) Dynamic Programming (DP)

c) Branch and Bound

d) Backtracing

Practicas Algoritmica UGR 2019-2020