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 ...
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 ...
-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 = ...