Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Re: Sieve of Eratosthenes with closures

by SyN/AcK (Scribe)
on Jul 21, 2003 at 04:23 UTC ( [id://276136]=note: print w/replies, xml ) Need Help??


in reply to Re: Sieve of Eratosthenes with closures
in thread Sieve of Eratosthenes with closures

Wow, this looks like some complex stuff. How exactly would this be benneficial in a program? Or is it basically just concept and application?
  • Comment on Re: Re: Sieve of Eratosthenes with closures

Replies are listed 'Best First'.
Re: Re: Re: Sieve of Eratosthenes with closures
by tilly (Archbishop) on Jul 21, 2003 at 05:58 UTC
    Closures allow you to organize code differently. The resulting style is as distinct from OO and procedural as they are from each other.

    Right now Dominus is writing a book on the subject. You can find some information in this article on iterators, a number of my nodes talk about closures a bit, see Why I like functional programming for one of the better ones. Or you can search for more information.

    Of course in this case the technique is just for fun. A somewhat shorter implementation of a sieve of Eratosthenes is:

    sub sieve { grep{@_[map$a*$_,$_..@_/($a=$_)]=0if$_[$_]>1}@_=0..pop } print join " ", sieve(100);
    (Implementation due to tye at (tye)Re3: (Golf): Sieve of Eratosthenes.)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-25 05:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found