Algo-Phantoms / Algo-Tree

Algo-Tree is a collection of Algorithms and data structures which are fundamentals to efficient code and good software design. Creating and designing excellent algorithms is required for being an exemplary programmer. It contains solutions in various languages such as C++, Python and Java.
MIT License
363 stars 618 forks source link

Travelling Salesman Problem #1760

Closed vanshikachokhani closed 3 years ago

vanshikachokhani commented 3 years ago

Is your feature request related to a problem? Please describe. We are given a set of cities and distances between pair of cities. We need to find the shortest path such that every city is visited only once. and returns to the starting point.

Describe the solution you'd like The path with minimum cost will be found using backtracking approach.

Do you want to work on it I am Gssoc participant and will the solution in C++.

OjusWiZard commented 3 years ago

Duplicate of #370