What are some clever uses for infinite generators? I've seen lots of seemingly trivial examples like "list all even numbers", but I assume there must be others that have more applicability to real-world scenarios. Concrete examples (in any language that support generators) appreciated!

I'll give a trivial sample as an answer.

link|improve this question

3  
The list of all off-topic questions for stackoverflow.com. – bmargulies Feb 9 '11 at 20:03
feedback

3 Answers

up vote 1 down vote accepted

Look at the Haskell code on http://rosettacode.org/wiki/Hamming_numbers#Haskell; that uses lazy lists (which are somewhat like generators) in a creative way to list all Hamming numbers.

link|improve this answer
Also has generator version in Python and C#. – delnan Feb 9 '11 at 20:19
feedback

A random generator might be considered clever use.

link|improve this answer
feedback

Trivial example: yield Fibonacci numbers one at a time (sans overflow checking, in C#):

public static IEnumerable<double> Fibonacci()
{
    double n_minus2 = 1;
    double n_minus1 = 1;
    yield return n_minus2;
    yield return n_minus1;

    while(true)
    {
        double n = n_minus2 + n_minus1;
        yield return n;
        n_minus2 = n_minus1;
        n_minus1 = n;
    }
}
link|improve this answer
OP asked for generators "that have more applicability to real-world scenarios". – delnan Feb 9 '11 at 20:12
@delnan - I am OP, and this is the example I said I'd post for illustrative purposes. – Justin Morgan Feb 9 '11 at 20:14
D'oh! Sorry. But is this kind of thing really what you're looking for? I'd consider this pretty much useless for real problems. – delnan Feb 9 '11 at 20:15
It is. I am wondering if there were structurally similar mechanisms that are actually useful. – Justin Morgan Feb 9 '11 at 20:19
Why not post your trivial example as part of your original post? 0.o – Pete Feb 9 '11 at 20:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.