Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Priority Sorting Challenge

by Zaxo (Archbishop)
on Jun 01, 2004 at 16:23 UTC ( [id://358182]=note: print w/replies, xml ) Need Help??


in reply to Priority Sorting Challenge

Rather than solving the problem of circular dependencies, Sort::Topological just insists you not have any. Take a look at the Graph module, which has a toposort function. That still doesn't solve detection, but it doesn't blow up:

$ perl -MGraph -e'my $g=Graph->new();$g->add_cycle(qw/foo bar baz/);$g +->add_edge(qw/quux foo/);print $g->toposort()' quuxbarbazfoo$
You could detect cycles by, for each node, checking if there is a path to any of its predecessors. That will not scale well, but it can be done

Graph nodes can carry weights, which will allow the priority part of your problem. Properly set up, a minimum spanning tree, $G->MST_Kruskal, should give a solution.

After Compline,
Zaxo

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://358182]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-25 09:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found