Recursion

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

Recursion

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

2
New cards

Recursive call

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

3
New cards

Base case

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

4
New cards

Forward progression

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

5
New cards

Backward progression

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

6
New cards

Recursively Traversing Arrays

Using recursion to navigate through the elements of an array.

7
New cards

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.

8
New cards

In what order are recursive calls completed?

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

9
New cards

Why is a base case important?

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

10
New cards

How can you traverse arrays without using recursion?

Use a for, for each, or while loop.