Stack Overflow - Very Deep or Infinite Recursion

Very Deep or Infinite Recursion

The most common cause of stack overflow is excessively deep or infinite recursion. Languages like Scheme, which implement tail-call optimization, allow infinite recursion of a specific sort—tail recursion—to occur without stack overflow. This works because tail-recursion calls do not take up additional stack space.

An example of infinite recursion in C.

int foo { return foo; }

The function foo, when it is invoked, continues to invoke itself, using additional space on the stack each time, until the stack overflows resulting in a segmentation fault.

Read more about this topic:  Stack Overflow

Famous quotes containing the words deep and/or infinite:

    There is a silence where hath been no sound,
    There is a silence where no sound may be,
    In the cold grave—under the deep, deep sea,
    Or in wide desert where no life is found,
    Thomas Hood (1799–1845)

    Age cannot wither her, nor custom stale
    Her infinite variety. Other women cloy
    The appetites they feed, but she makes hungry
    Where most she satisfies.
    William Shakespeare (1564–1616)