Tagged Questions
11
votes
4answers
1k views
Good graph traversal algorithm
Abstract problem : I have a graph of about 250,000 nodes and the average connectivity is around 10. Finding a node's connections is a long process (10 seconds lets say). Saving a node to the database ...
2
votes
3answers
452 views
Why do we need a priority queue in Prim's Algorithm
As my question speaks I want to know why do we use Priority queue in Prim's Algorithm?
How does it saves us from using the naive way (yes I've heard of it but don't know why).
I'd be very happy if ...
1
vote
1answer
151 views
“Auto code” algorithm for signal flow based programming?
Let's assume I've got a graph of a signal flow based "programm" (e.g. something similar to Simulink). I.e. I've got a directed graph with a few starting nodes and a few end nodes as well as lots of ...
1
vote
3answers
605 views
All pairs all paths on a graph
This is possibly a problem with possibly no optimal solution. Suppose I have a directed graph, have no clue whether it has any cycles or not(cycle detection will be one of the aspects of this ...
1
vote
3answers
679 views
need a graph algorithm similar to DFS
I'm curious if there is a specific graph algorithm that traverses an unweighted acyclic directed graph by choosing a start node and then proceeding via DFS. If a node is encountered that has ...