Difference between revisions of "Tail recursion"

From HaskellWiki
Jump to navigation Jump to search
(Make 'foldl' the object of the link, and move below quote from Brent.)
(formal definition. vague removed.)
Line 5: Line 5:
 
not tail recursive.
 
not tail recursive.
   
  +
Here is formal definition of "tail recursive". "<code-haskell>f</code-haskell> occurs in <code-haskell>t</code-haskell>" means <code-haskell>f</code-haskell> is a free variable of <code-haskell>t</code-haskell>.
With that said, tail recursion is not that useful of a concept in a
 
lazy language like Haskell. The important concept to know in Haskell
 
is [[guarded recursion]], where any recursive calls occur within a data
 
constructor (such as <hask>foldr</hask>, where the recursive call to foldr occurs
 
as an argument to <hask>(:)</hask>). This allows the result of the function to be
 
consumed lazily, since it can be evaluated up to the data constructor
 
and the recursive call delayed until needed.
 
   
  +
When a function is defined (in <code-haskell>let</code-haskell> or at the top level) as:
Note that [[Fold|foldl]] is always tail recursive.
 
  +
f = t
  +
where <code-haskell>f</code-haskell> is a name and <code-haskell>t</code-haskell> is a lambda-term, <code-haskell>f</code-haskell> is ''tail recursive'' iff <code-haskell>f</code-haskell> occurs tail recursively in <code-haskell>t</code-haskell>. <code-haskell>f</code-haskell> ''occurs tail recursively'' in <code-haskell>t</code-haskell> iff <code-haskell>f</code-haskell> occurs in <code-haskell>t</code-haskell> and any of the following holds:
  +
* <code-haskell>t</code-haskell> is variable;
  +
* <code-haskell>t</code-haskell> is "<code-haskell>\var -> t0</code-haskell>" and <code-haskell>f</code-haskell> occurs tail recursively in <code-haskell>t0</code-haskell>;
  +
* <code-haskell>t</code-haskell> is "<code-haskell>t0 t1</code-haskell>" and <code-haskell>f</code-haskell> occurs tail recursively in <code-haskell>t0</code-haskell> and does not occur in <code-haskell>t1</code-haskell>;
  +
* <code-haskell>t</code-haskell> is "<code-haskell>let bs in t0</code-haskell>" and <code-haskell>f</code-haskell> occurs tail recursively in <code-haskell>t0</code-haskell> and for each binder "<code-haskell>var = t1</code-haskell>" in <code-haskell>bs</code-haskell>, <code-haskell>f</code-haskell> does not occur in <code-haskell>t1</code-haskell>;
  +
* <code-haskell>t</code-haskell> is "<code-haskell>case t0 of bs</code-haskell>" and <code-haskell>f</code-haskell> does not occur in <code-haskell>t0</code-haskell> and for each branch <code-haskell>b</code-haskell> in <code-haskell>bs</code-haskell>, <code-haskell>f</code-haskell> does not occur or occurs tail recursively in <code-haskell>b</code-haskell>;
  +
** when we are saying "occur in <code-haskell>b</code-haskell>", <code-haskell>b</code-haskell> has form "<code-haskell>D vars -> t</code-haskell>" (where <code-haskell>D</code-haskell> is some data constructor and <code-haskell>vars</code-haskell> is a sequence of names), we are thinking of the lambda-abstraction "<code-haskell>\vars -> t</code-haskell>" instead of <code-haskell>b</code-haskell>.
  +
 
Note that [[Fold|foldl]] is tail recursive.
  +
  +
The important concept to know in Haskell is [[guarded recursion]], where any recursive calls occur within a data constructor (such as <hask>foldr</hask>, where the recursive call to foldr occurs as an argument to <hask>(:)</hask>). This allows the result of the function to be consumed lazily, since it can be evaluated up to the data constructor and the recursive call delayed until needed.
   
 
== Source ==
 
== Source ==

Revision as of 00:09, 16 June 2010

A recursive function is tail recursive if the final result of the recursive call is the final result of the function itself. If the result of the recursive call must be further processed (say, by adding 1 to it, or consing another element onto the beginning of it), it is not tail recursive.

Here is formal definition of "tail recursive". "<code-haskell>f</code-haskell> occurs in <code-haskell>t</code-haskell>" means <code-haskell>f</code-haskell> is a free variable of <code-haskell>t</code-haskell>.

When a function is defined (in <code-haskell>let</code-haskell> or at the top level) as:

 f = t

where <code-haskell>f</code-haskell> is a name and <code-haskell>t</code-haskell> is a lambda-term, <code-haskell>f</code-haskell> is tail recursive iff <code-haskell>f</code-haskell> occurs tail recursively in <code-haskell>t</code-haskell>. <code-haskell>f</code-haskell> occurs tail recursively in <code-haskell>t</code-haskell> iff <code-haskell>f</code-haskell> occurs in <code-haskell>t</code-haskell> and any of the following holds:

  • <code-haskell>t</code-haskell> is variable;
  • <code-haskell>t</code-haskell> is "<code-haskell>\var -> t0</code-haskell>" and <code-haskell>f</code-haskell> occurs tail recursively in <code-haskell>t0</code-haskell>;
  • <code-haskell>t</code-haskell> is "<code-haskell>t0 t1</code-haskell>" and <code-haskell>f</code-haskell> occurs tail recursively in <code-haskell>t0</code-haskell> and does not occur in <code-haskell>t1</code-haskell>;
  • <code-haskell>t</code-haskell> is "<code-haskell>let bs in t0</code-haskell>" and <code-haskell>f</code-haskell> occurs tail recursively in <code-haskell>t0</code-haskell> and for each binder "<code-haskell>var = t1</code-haskell>" in <code-haskell>bs</code-haskell>, <code-haskell>f</code-haskell> does not occur in <code-haskell>t1</code-haskell>;
  • <code-haskell>t</code-haskell> is "<code-haskell>case t0 of bs</code-haskell>" and <code-haskell>f</code-haskell> does not occur in <code-haskell>t0</code-haskell> and for each branch <code-haskell>b</code-haskell> in <code-haskell>bs</code-haskell>, <code-haskell>f</code-haskell> does not occur or occurs tail recursively in <code-haskell>b</code-haskell>;
    • when we are saying "occur in <code-haskell>b</code-haskell>", <code-haskell>b</code-haskell> has form "<code-haskell>D vars -> t</code-haskell>" (where <code-haskell>D</code-haskell> is some data constructor and <code-haskell>vars</code-haskell> is a sequence of names), we are thinking of the lambda-abstraction "<code-haskell>\vars -> t</code-haskell>" instead of <code-haskell>b</code-haskell>.

Note that foldl is tail recursive.

The important concept to know in Haskell is guarded recursion, where any recursive calls occur within a data constructor (such as foldr, where the recursive call to foldr occurs as an argument to (:)). This allows the result of the function to be consumed lazily, since it can be evaluated up to the data constructor and the recursive call delayed until needed.

Source