Random
Source Code

recursion

See recursion.

Here's what recursion is:
- What means "what means"?
- Who is "who is"?

by weitzhandler August 9, 2019

9πŸ‘ 3πŸ‘Ž


recursion

Recursion is when something repeats. It does it over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over and over again.

That picture is having a smaller version of itself and a smaller and a smaller all the way down forever. It's recursion!

by β€Žβ€Žβ€Žβ€Žβ€Žβ€Žβ€Žβ€Žβ€Žβ€Žβ€Žβ€Žβ€Žβ€Žβ€Žβ€Žβ€Ž May 19, 2021

15πŸ‘ 16πŸ‘Ž


Recursal

Something that endlessly loops forever is recursal.

In theory, a black hole is recursal.

If you understand programming, you can endlessly loop a method (a) by putting that methods name inside of its own method, therefore method (a) is going to be a recursal method.

by TheJok3r September 28, 2015


Recursion

In programming, the calling of a function within the function itself.

Here’s an example of a function that utilizes recursion:

def multiply(a, b):

#takes two integers and multiplies them

if b == 0:

return 0

else:

return a + multiply(a, b-1)

by QWERTY mnbvcxz February 15, 2019

7πŸ‘ 7πŸ‘Ž


recursive

A procedure that is repeated over and over again.

This problem is a perfect example of a recursive formula.

by Rachel September 5, 2004

25πŸ‘ 38πŸ‘Ž


recursion

Actually, recursion also includes a situation where B follows A and A follows B right back. Also, recursion doesn't have to be infinite. So there you go, that's your geek lesson for today.

A vicious circle uses recursion. Recursion exemplifies a vicious circle.

Recursion is not in common usage as far as I know. The whole entry is a joke (duh...)

by SirReal June 21, 2006

70πŸ‘ 172πŸ‘Ž


Recursion

see recursion

To understand recursion, you must first understand recursion

by MemeLordπŸ™ƒ January 6, 2020

1πŸ‘ 1πŸ‘Ž