Invert an Array
In this lesson, we will learn how to inverse an array recursively.
What does “Invert an Array” mean?
Our task here is to make the first element of the array the last element, the second element the second last element and so on.
Implementation
Explanation
In the code snippet above, we break the last element of the array, which will later be added in the front of the array.
We keep breaking the last element and saving it for appending in the front of the array in each function call until we reach an empty array. Here, the empty array will be our base case, because we simply return the empty array []. After the base case is satisfied, the rest of the elements are appended in the reverse order. Hence, when the last function returns we have an inverted array.
The sequence of function calls is as follows:
In the next lesson, we will learn how to replace all negative numbers with using recursion.