1. Suppose I have an unsorted array of integers with a size of .

    • Write the pseudocode for a looping (non-recursive) algorithm that finds the maximum element in the array.
    • Write the pseudocode for a recursive algorithm that finds the maximum element in the array.
    • What is the runtime Big- value for your recursive algorithm?
    • What is the space Big- value for your recursive algorithm?

  1. Consider the Harmonic numbers, given by the series and recursion relation shown below. Let’s come up with a recursive algorithm for calculating the nth Harmonic number.

    • The base case for our recursive algorithm will be the smallest Harmonic number in the series. In other words, the base case will be . What is the value of ?
    • From the recurrence relation, we know that the nth Harmonic number can be found by taking the (n-1)th Harmonic number and adding to it. Write out the pseudocode for a recursive algorithm to calculate the nth Harmonic number.
    • Is your algorithm an example of linear, binary, or multiple recursion? Why?
    • Sketch out a recursive trace of your function. Use as the argument to the function.

  1. Describe a recursive algorithm that computes the sum of all the elements in a two-dimensional array of integers. You can either use pseudocode or write out a few sentences.