Some languages (Haskell, Clojure, Scheme, etc.) have lazy evaluation. One of the "selling points" of lazy evaluation is infinite data structures. What is so great about that? What are some examples of cases where being able to deal with infinite data structures is clearly advantageous?
|
|
Here are two examples, one big and one small: Why Functional Programming Matters by John Hughes has a good example, of a chess game. The move tree for a chess game is not actually infinite, but its big enough that it might as well be infinite (call it "near-infinite"). In a strict language you can't actually treat it as a tree, because there isn't enough room to store the whole tree. But in a lazy language you just define the tree and then define a "nextMove" function to traverse it as far as necessary. The lazy evaluation mechanism takes care of the details. The small example is simply associating an index number with every item in a list, so that ["foo", "bar", "baz"] becomes [(1,"foo"), (2,"bar"), (3,"baz")]. In a strict language you need a loop that keeps track of the last index and checks to see if you are at the end. In Haskell you just say:
The first argument to zip is an infinite list. You don't need to work out how long it needs to be ahead of time. |
|||||||||||
|
|
A few advantages I can think of:
|
||||
|
|
|
I was going to comment regarding @knivil's Scheme. Instead I'll just throw this up as another answer. Lazy data structures aren't the only way to accomplish most tasks. This might irritate Pythonistas. But I believe it's best when programmers get to choose which techniques they use. Lazy techinques are powerful and elegant. Knivil mentioned using Scheme's
I could also write
Consider the powerful and elegant
It creates the infinite list
The lazy approach is an elegant way to program. It's not the only way, and people used to C or Java will certainly cry out "but I don't need laziness, I can just _", and they are correct. If your language is Turing-complete, it can be done. But laziness can be oh so elegant. |
||||
|
|
There is the canonical pure memoization strategy:
We map the Of course, this has lookup time linear in the argument. You can replace it with an infinite trie to get logarithmic lookup time. cf. data-inttrie. |
|||||||
|
|
Well, I had a nice use case for that last month. I needed a generator for unique names when copying objects. That means, the generator takes the original name
as long as the name is not used within the set of objects within the same group. Using an "infinite data structure" (an infinite array of strings) for that instead of a simple loop has one advantage: you can separate the name generating part completely from the test if the name is already in use. So I could reuse the generator function for different types of objects where the in-use test is slightly different for each object type. |
||||
|
|
|
Infinite data structures provide elegant representations of (computable) real numbers. For example, an infinite list like
can represent |
|||
|
|