Tagged Questions

6
votes
3answers
93 views

Dealing with Massive Graphs - Traveling Salesperson

I'm teaching myself how to program algorithms involving TSPs (Djikstra, Kruskal) and I'm looking for some start up advice. I am working with C# and SQL. Ideally I'd like to be able to do this ...
4
votes
2answers
381 views

Non-cycle path to all nodes

Is there an algorithm or set of algorithms that would let you find the shortest walking distance from an arbitrary start node so that every node gets visited in a weight, undirected graph? It's not ...
4
votes
5answers
3k views

Minimum cost strongly connected digraph

I have a digraph which is strongly connected (i.e. there is a path from i to j and j to i for each pair of nodes (i, j) in the graph G). I wish to find a strongly connected graph out of this graph ...
2
votes
2answers
180 views

Traveling Salesman Problem with additional partial ordering

I am looking for a name for this problem or any leads on an algorithm or source code: Example: You want to find the best route to visit the 100 largest cities in the US (classic TSP) but before you ...
1
vote
4answers
291 views

Choice between Brute force approach and concurrent threads

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 ...
0
votes
1answer
410 views

How to calculate minimum expected time for searching a graph?

I have a simple graphing problem where I traverse a graph looking for an item. Each node in the graph has a probability n/100 of the item being there, where the some of all the probabilities equals 1. ...
-2
votes
2answers
97 views

Travelling Salesman : How could one preprocess a graph?

Say we wanna compute the TSP for a given, complete graph G with V vertices and E edges (by complete I mean : every vertex is connected with every other vertex). I'll try to ask the question again. ...