Warmup: Fibonacci
The Fibonacci Sequence, which sums each number with the one before it, is a great example of a problem that can be solved recursively.
Assignment 1
- Using iteration, write a function
fibs
which takes a number and returns an array containing that many numbers from the fibonacci sequence. Using an example input of8
, this function should return the array[0, 1, 1, 2, 3, 5, 8, 13]
. - Now write another function
fibsRec
which solves the same problem recursively. This can be done in just a couple of lines (or 1 if you’re crazy, but don’t consider either of these lengths a requirement… just get it done).
In order to run these functions you’ll need to run it from somewhere. You can run scripts from the command line using the node command installed with nodejs. You can read about the common ways to do this here.
Understanding recursive Fibonacci
Did you figure it out? Congratulations! But do you really understand what is taking place? If you need some help understanding what’s going on with this function, give Khan Academy’s Stepping Through Recursive Fibonacci Function video a watch. If you prefer to read, Recursive Fibonacci Explained is also very helpful!
Project: merge sort
Sorting algorithms are a great way to get to grips with recursion. One such algorithm is Merge Sort, a type of sort that lends itself well to recursion and can be much faster than other algorithms such as bubble sort on the right data sets. You’ll build a function which sorts a given array but uses a “merge sort” function for doing so.
It can be a bit strange to wrap your head around, but just remember you’re “dividing and conquering” the problem.
Background viewing
The first step is to actually understand what the merge sort algorithm is doing:
- Check out this introductory video from Harvard’s CS50x course.
- Check out this more detailed video explanation by David J. Malan (watch only until 1:14:00).
- The concept of merging and Merge Sort – How it Works part on YouTube give you a more formal look at this problem if you’re still unclear.
- (Optional) Play with this Merge Sort Visualizer to get a better feel for exactly what is happening during a Merge Sort.
Assignment 2
- Build a function
mergeSort
that takes in an array and returns a sorted array, using a recursive merge sort methodology. - Tips:
- Think about what the base case is and what behavior is happening again and again and can actually be delegated to someone else (e.g. that same function!).
- It may be helpful to check out the background videos again if you don’t quite understand what should be going on.
Additional resources
This section contains helpful links to other content. It isn’t required, so consider it supplemental.
- Another look at merge sort
- Visualize and understand the memory allocation for recursive functions
- For more attempts at recursion try the first 5 problems in Project Euler