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.
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++.
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++.