Tagged Questions
6
votes
3answers
109 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 ...
2
votes
3answers
454 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
185 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
554 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
152 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
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 ...