Tagged Questions
The graph-traversal tag has no wiki summary.
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 ...
6
votes
3answers
103 views
How can I programmatically create/detect keyboard runs in passwords?
I'm looking for a method to create a list of or detect keyboard runs in a password.
I can bound my problem with password criteria such as length and number of special characters required.
An example ...
5
votes
5answers
260 views
How would you represent a graph (the kind associated with the travelling salesman problem) in Haskell
It's pretty easy to represent a tree in haskell:
data Tree a = Node Tree a Tree | Leaf a
but that's because it has no need for the concept of an imperative style "pointer" because each Node/Leaf ...
3
votes
4answers
221 views
How to implement a DFS with immutable data types
I'm trying to figure out a neat way of traversing a graph Scala-style, preferably with vals and immutable data types.
Given the following graph,
val graph = Map(0 -> Set(1),
1 ...
2
votes
3answers
417 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 ...
2
votes
2answers
166 views
how to use Graph Theory for scheduling execution order?
I am designing an application, which executes a series of plugins. A plugin's execution might/might not be dependent on another/other plugins execution. i.e some (not all) of the plugins expect other ...
2
votes
2answers
552 views
Six degrees of Kevin Bacon in Perl
First yes, this is a homework project for my Perl class. I am not looking for the answer (although that would be sweet). As I understand it I need to use a BFS and a regular expression to organize ...
1
vote
1answer
145 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
549 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
669 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 ...
0
votes
4answers
448 views
Returning only the vertices in the actual shortest path
I know the title is a bit messy, but I don't know how to explain it better.
What I'm trying to do:
Using a graph found in a text file, find and print the shortest path (minimum amount of vertices) ...
-3
votes
1answer
144 views
help in executing the code
My code:
nodes = []
stack = util.Stack()
child = []
currNode = problem.getStartState()
stack.push(currNode)
while not stack.isEmpty():
nodes = ...