Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    B
    C
    D
    
  2. or download this
    while(1){
             last unless my $immed = pop @{$immed_child{$root}};
            get_descends($immed);
            $all_descends{$immed}++;
        }
    
  3. or download this
        foreach my $immed ( @{$immed_child{$root}} )  {
            get_descends($immed);
            $all_descends{$immed}++;
        }