Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Tree traversal without recursion: the tree as a state machine

by Aristotle (Chancellor)
on Feb 16, 2007 at 15:22 UTC ( [id://600456]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub traverse_tree {
        my ( $tree_root, $visitor_callback ) = @_;
    ...
            ( $prev_node, $curr_node ) = ( $curr_node, $next_node );
        }
    }
    
  2. or download this
    sub traverse_tree {
        my ( $tree_root, $visitor_callback ) = @_;
    ...
            ( $prev_node, $curr_node ) = ( $curr_node, $next_node );
        }
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://600456]
Approved by Joost
Front-paged by liverpole
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found