Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: H of A optimization

by abitkin (Monk)
on Aug 30, 2002 at 20:12 UTC ( [id://194236]=note: print w/replies, xml ) Need Help??


in reply to H of A optimization

I'd like to note, the only reason I'm asking here, is every time I do, I learn a new trick to help myself out.

Replies are listed 'Best First'.
Re: Re: H of A optimization
by Zaxo (Archbishop) on Aug 30, 2002 at 23:39 UTC

    Ok, dpuu suggested Graph, which I recommend. This does it:

    #!/usr/bin/perl -w use strict; use Graph::Undirected; my $net = Graph::Undirected->new; while (<DATA>) { $net = $net->add_edge( split ); } use Data::Dumper; print Dumper($net); __END__ 0 1 1 2 1 3 1 4 2 4 4 5

    Graph.pm takes care of circular references for you.

    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://194236]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-03-29 13:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found