15-110 Fall 2012 [Touretzky/Kaynar]

Problem Set 5 - due Friday, October 5 in class

Reading Assignment

Read sections 5.1-5.6 in chapter 5 of the textbook Explorations in Computing.

Instructions

Exercises

  1. (1 pt) Write a recursive Ruby function blast_off(n) that has one parameter n that is a positive integer. Your function should print the integers from n down to 0, each on a separate line, and then print "Blast off!" and return nil. Your solution must use recursion and should not have a loop in it.

  2. (1 pt) Write a recursive Ruby function sum_odd(list) that has one parameter list that is a list of integers. The function should return the sum of all the integers in the list that are odd, ignoring any that are even. Your solution must use recursion and should not have a loop in it.

    For example, if we call sum_odd([3, 1, 4, 1, 5, 9, 2]), then the function should return the value 19 since 3 + 1 + 1 + 5 + 9 = 19.

    Hint: what should the function return if the list is empty? What should it return if the first item in the list is odd? What should it return if the first item is not odd?

  3. (4 pts) Do you believe that the binary search algorithm we studied works in all cases? What about edge cases, such as a key that precedes the first element in the list or follows the last element? What if the integer division (low+high)/2 causes problems when the list has an even number of elements, or an odd number of elements? Here is a repeat of the algorithm:

    def binsearch(list, key)
      low = -1
      high = list.length
      while low+1 < high
        mid = (low+high) / 2
        if key == list[mid] then
          return mid
        elsif key < list[mid] then
          high = mid
        else
          low = mid
        end
      end
      return nil
    end
    
    One way to convince yourself that the algorithm works is to show that every possible position in the ordered list, including both the values themselves (when the key is found) and the positions between values (when the key is not found and the binary search should return nil), can be derived by following the algorithm for updating mid, low, and high. To do this, we're going to construct a complete binary search tree. First we introduce some notation for depicting nodes in the search tree:
    X
    high
    mid
    low
        
    nil
    high
     
    low
    The above nodes are generated by starting with the low and high values. If low+1 is less than high, then we compute mid, and compare the key against that element of the list, e.g., the string "X" as shown above. If they match we return mid, otherwise we take either the left or right branch. But if low+1 is equal to instead of less than high, then we stop and return nil, as in the node on the right.

    (i) In the diagram below, we've filled in the numeric values for three of the nodes for the case where the key is "Aardvark". The binary search always begins with low = -1 and high = 5, giving mid = 2, which puts us at "Charlie". So all searches of this list start at "Charlie". If the key is less than this value, the algorithm tells us to set high equal to mid, so we have a high of 2 and a low of -1, which gives a mid of 0, taking us to node "Alpha", as shown. If we go left from "Alpha" (because the key is less than "Alpha"), the next node has a high of 0 and a low of -1. Since now low+1 = high, the algorithm returns nil, making this node a terminal (leaf) node. Print out the diagram, or redraw it yourself, and complete the tree by following the algorithm to fill in all the missing values, so that every node has either two or three numbers written next to it. For example, you might choose a key of "Bravo" and see how the algorithm gets to that node. Then choose a key of "Banana" and see at which leaf node the algorithm ends. And so on. Include your complete annotated tree in the pages you hand in.

    (ii) Notice that all the terminal (leaf) nodes are nil. What pattern do you notice in the numbers attached to these nodes?

    (iii) Notice that all the nonterminal (branch) nodes contain elements of the list. What pattern do you notice in their mid values?

  4. (2 pts) Let's use the recursive, non-destructive version of the merge sort algorithm covered in lecture to sort the array [15, 25, 56, 11, 22, 27, 38, 43]:

    Non-Destructive Merge Sort Algorithm:
    1. Sort the first half of the array using merge sort.
    2. Sort the second half of the array using merge sort.
    3. Merge the two sorted halves to get a sorted result array.

    1. Show the value of newlist1 after step 1 of the algorithm is completely done.

    2. Show the value of newlist2 after step 2 of the algorithm is completely done.

    3. Show the merge process of step 3 by tracing this step as shown in the course slides/notes, giving the values for a_index, b_index, and c at each iteration.

    4. Explain why this algorithm is recursive. What is its base case?

  5. (2 pts) Quick sort is another algorithm for sorting data. In this version of the algorithm, we compare all of the elements in the list to the middle element (list[list.length/2]), which we will call the pivot. All of those that are less than the pivot go into one list and all of those that are greater than or equal to the pivot go into a second list. Then we sort these two sublists (recursively). The final sorted list is the first sorted sublist followed by the pivot followed by the second sorted sublist.

    For example, if we want to sort the list

    list = [56, 42, 82, 75, 18, 58, 27, 61, 84, 41, 21, 15, 71, 90, 33]
    
    we create two lists, separating the elements based on the pivot 61:

    list1 = [56, 42, 18, 58, 27, 41, 21, 15, 33]
    list2 = [82, 75, 84, 71, 90]
    

    Each sublist is sorted recursively (final results shown for each sublist):

    list1 = [15, 18, 21, 27, 33, 41, 42, 56, 58]
    list2 = [71, 75, 82, 84, 90]
    

    and the final result is

    [15, 18, 21, 27, 33, 41, 42, 56, 58] + [61] + [71, 75, 82, 84, 90]
    => [15, 18, 21, 27, 33, 41, 42, 56, 58, 61, 71, 75, 82, 84, 90]
    

    Consider this quick sort algorithm sorting a list of n integers.

    1. Into what two sublists would this algorithm split the list [56, 42, 18, 58, 27, 41, 21, 15, 33] ?

    2. This algorithm is recursive. What is the base case for this recursion? (In other words, when does quick sort stop partitioning a list into two sublists?) BE CAREFUL: This is a little trickier than it seems.

    3. The two sublists list1 and list2 need not be of the same length. One could even be empty. It depends on the value of the pivot element. Explain what sort of input would ensure that this algorithm would have an order of complexity of O(n log n). Give a simple example to justify your answer.

    4. Explain how an unlucky sequence of pivots could give this algorithm a worst case complexity of O(n2). Give a simple example to justify your answer.