Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re3: Depth First Search through Digraph Results in Memory Leak

by Hofmator (Curate)
on Jan 09, 2004 at 13:44 UTC ( [id://320109]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # this marks the current vertex
    $explored->{$node->{_id}}++;
    
    ...
       # not of the vertex!!
       $do_search->($link->{_to}) unless ($explored->{$link->{_id}});
    }
    
  2. or download this
    $explored->{$node->{_id}}++;
    foreach my $link (@{$node->{_outlinks}}) {
       my $new_node = $link->{_to};
       $do_search->($new_node) unless ($explored->{$new_node->{_id}});
    }
    

Log In?
Username:
Password:

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

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

    No recent polls found