I have found Minimum spanning tree using Kruskal algorithm using C and adjacency matrix. Now I want to solve it for traveling salesman problem by doubling the edges and finding euler cycle or finding the min-weight shortcuts and then hamilton cycle.

Can anyone please tell me how I can find shortcuts in a given graph (matrix) which can give me MST? Algorithm is required and code would plus.

link|improve this question

50% accept rate
Is this homework? – drhirsch Dec 2 '11 at 8:38
No, this is not HW. – Junaid Dec 2 '11 at 8:47
Does an MST really help solving a TSP? – Daniel Fischer Dec 2 '11 at 11:16
Yea it does. You have to use other algorithms after finding MST in a graph. – Junaid Dec 2 '11 at 16:40
I don't fully understand your problem, Junaid. Do you just want to know how to get a solution to the TSP problem using an MST heuristic? Since Kruskal sorts the edges already, you just have to traverse the MST by using a DFS algorithm. If you want more information, tell me. – Korion Feb 3 at 9:54
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.