1. In programming and mathematics, the part of a recursive function or algorithm that calls itself with modified parameters, moving toward the base case
In the factorial function, the recursive case is n * factorial(n-1)
Na função fatorial, o caso recursivo é n * fatorial(n-1)
2. The condition or scenario in which a recursive process continues to repeat with different inputs
The recursive case must eventually lead to the base case to avoid infinite loops
O caso recursivo deve eventualmente levar ao caso base para evitar loops infinitos