THE WORD HUNTER
← All vocabulary

English vocabulary · C1

Recursion

rɪˈkɜːrʒən · n.

It means a function that calls itself. Each call runs the same steps, until a stop point is reached.

Watch the Recursion lesson

Continue in the learning app for video lessons and review.

Example sentences

Word origin and roots

from Latin

Synonyms and nuances

Words with the same root

currere — to run

Lesson notes

Recursion. It means a function that calls itself. Each call runs the same steps, until a stop point is reached.

Similar words are loop, cycle, and repeat. Use recursion when a function calls itself to solve a problem.

The code crashed due to endless recursion. Recursion made the search run much faster.

From Latin. Re means again. Currere means to run. Running back into itself, again and again — that is recursion.