Help for this page

Select Code to Download


  1. or download this
    sub func {
       ...
    ...
          return func(...);
       }
    }
    
  2. or download this
    sub func {
       ...
       return func(...);
    }
    
  3. or download this
    use constant SQRT_EPSILON  => 0.0001;
    use constant SQRT_MAX_ITER => 50;
    ...
    
       return $guess;
    }
    
  4. or download this
    sub in_order_visit {
       my ($node, $visitor) = @_;
    ...
       $visitor->($node);
       in_order_visit($node->right(), $visitor);
    }
    
  5. or download this
    sub in_order_visit {
       my ($node, $visitor) = @_;
    ...
          }
       }
    }