Recursion

studied byStudied by 120 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 9

10 Terms

1

Recursion

A programming concept where a method calls itself during its execution.

New cards
2

Recursive call

The act of a method calling itself within its own code.

New cards
3

Base case

A condition in a recursive method that signals the termination of the recursion.

New cards
4

Forward progression

The movement through recursive calls from the initial call to the base case.

New cards
5

Backward progression

The movement through recursive calls from the base case back to the initial call.

New cards
6

Recursively Traversing Arrays

Using recursion to navigate through the elements of an array.

New cards
7

What happens when the base case is reached?

The execution of the current method is complete and the process repeats back to the initial recursive call.

New cards
8

In what order are recursive calls completed?

Once the base case is reached, the recursive calls are completed in backwards order.

New cards
9

Why is a base case important?

The base case ensures that the recursive method completes at some point, preventing an infinite loop.

New cards
10

How can you traverse arrays without using recursion?

Use a for, for each, or while loop.

New cards
robot