I have a question concerning graphs. Consider a graph with nodes and edges, each edge having a cost. The problem is to visit all nodes so that the sum of costs of edges traversed is least (Traveling salesman problem, I guess).
Which approach would you recommend? Using brute force approach by recursion or using brute force by spawning threads to concurrently travel different paths and calculate the cost of them.
Or do you have a better way of approaching this problem?