Help for this page

Select Code to Download


  1. or download this
    sub print_tree
    {
    ...
             + $tree->node
             + sum_tree($tree->right);
    }
    
  2. or download this
    
    sub walk_tree
    ...
      walk_tree($tree, sub { $total += $_[0]; });
      return $total;
    }