recursion ( synonym found)

Definition of recursion:

°The act of recurring.
°The act of defining an object (usually a function) in terms of that object itself.
"n! = n × (n − 1)! (for n > 0) or 1 (for n = 0) defines the factorial function using recursion."

Definition of recursion:

°The act of recurring.
°The act of defining an object (usually a function) in terms of that object itself.
"n! = n × (n − 1)! (for n > 0) or 1 (for n = 0) defines the factorial function using recursion."

Back to Top