Travelling Salesman Problem (TSP) Simplified

preview_player
Показать описание
This tutorial is a very simple explanation of the Travelling Salesman Problem and the algorithm to solve it

Explanation here

Travelling Salesman Problem in Python

All Linear Programming Tutorials here
Рекомендации по теме
Комментарии
Автор

You have clear and informative videos. They have helped me to learn especially SQL programming

a_l
Автор

Hello Kindson! Thanks for the tutorial! Are you going to make a follow up video about solving the problem in python?

marcinzaremba
Автор

Question. D to D should be ZERO right? Am I wrong?

aspoonfulofknowledge
Автор

Hi, sorry to comment 3 years after the video, but this seems like the method you explained doesn't actually get you the shortest path because it doesn't look ahead at future costs/distances.
In your example:
You said A C B D A is the shortest path, with a total of 14 (1+1+5+7)
But there's another path, A C D B A that has a total of 11 (1+2+5+3) because it avoids the highest cost/distance path.

This simplified solution is a bit misleading.

JustaBean