Recursion

Home > Computer Science > Programming Languages > Control Structures > Recursion

Recursion is a programming technique where a function calls itself until a certain condition is met. It can be an elegant solution to certain problems, but it can also be resource-intensive and lead to stack overflow errors.