Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: [Study]: Searching for square roots

by ikegami (Patriarch)
on Nov 14, 2006 at 22:54 UTC ( [id://584079]=note: print w/replies, xml ) Need Help??

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) = @_;
    ...
          }
       }
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-03-28 18:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found