I was recently asked if I could find an algorithm to compute the minimum cost spanning tree of a given graph, where the total cost of the spanning tree is given by the product of the edge costs rather than by their sum.
There are several algorihms to compute the regular minium spanning tree, but I am unsure of how to tweak them for the case mentioned above. Any ideas?
Thank you.