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

Re: how to construct tree from parent pointer list

by artist (Parson)
on Mar 22, 2006 at 03:56 UTC ( [id://538396]=note: print w/replies, xml ) Need Help??


in reply to how to construct tree from parent pointer list

Graph::Easy
--Artist

Replies are listed 'Best First'.
Re^2: how to construct tree from parent pointer list
by Anonymous Monk on Mar 22, 2006 at 17:05 UTC
    I have the following list that is generated where the fist item it the child and the second item is the parent: b:a c:a d:b e:c f:c And it needs to look like this when I am done: +-b--d a -+ + +-e +-c-+ +-f Any help with this would be appreciated.

    I'd suggest something along these lines...

    use Graph::Easy; my $graph = Graph::Easy->new(); my @nodes=('b:a','c:a','d:b','e:c','f:c'); my ($child,$parent); # build the graph foreach my $node (@nodes) { ($child,$parent) = split(":",$node); $graph->add_edge($parent,$child); } # print the graph print $graph->as_asciii();

    I have no idea how to store this either.

    Is there any reason you don't want to do this?

    # save the graph by saving the list of original nodes open($filehandle,"<","nodes.dat") or die("Can't open file 'nodes.dat' +for writing: $!\n"); print $filehandle join("\n",@nodes);

    --
    Ytrew

      Ack! The arrow is wrong on the open statement. It should go the other direction. :-(

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (8)
As of 2024-03-28 09:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found