Homework 9

Due Tuesday 22-Mar, at 10:00pm


To start

  1. Create a folder named hw9
  2. Create a new file hw9.py in that folder
  3. Edit hw9.py and add the functions and some testcases as required
  4. When you have completed and fully tested hw9, submit hw9.py to Gradescope. For this hw, you may submit up to 15 times, but only your last submission counts.

While you may submit to Gradescope as often as you like for this assignment, some questions are not autograded, so you will be responsible for testing your code and making sure it meets the problem requirements.

Some important notes

  1. This homework is solo. You may not collaborate or discuss it with anyone outside of the course, and your options for discussing with other students currently taking the course are limited. See the academic honesty policy for more details.
  2. After you submit to Gradescope, make sure you check your score. If you aren’t sure how to do this, then ask a CA or Professor.
  3. There is no partial credit on Gradescope testcases for autograded problems. Your Gradescope score is your Gradescope score.
  4. Read the last bullet point again. Seriously, we won’t go back later and increase your Gradescope score for any reason. Even if you worked really hard and it was only a minor error…
  5. Do not hardcode the test cases in your solutions.
  6. We are not giving you any starter code this week. That means you need to create your file from scratch and include your own testcases. For writing testcases, follow the style of testcases uses in the previous homeworks.
  7. Remember the course’s academic integrity policy. Solving the homework yourself is your best preparation for exams and quizzes; cheating or short-cutting your learning process in order to improve your homework score will actually hurt your course grade long-term.

A Note About Style Grading

Like in the previous assignments, we will be grading your code based on whether it follows the 15-112 style guide. We may deduct up to 10 points from your overall grade for style errors. We highly recommend that you try to write clean code with good style all along, rather than fixing your style issues at the end. Good style helps you code faster and with fewer bugs. It is totally worth it. In any case, style grading already started, so please use good style from now on!

A few notes on recursion:

Problems

  1. Recursion-Only evenCount(L) [10 pts]
    Without using iteration, write the recursive function evenCount(L) which given a possibly-empty list L of integers, returns the number of even integers in L. So: evenCount([5,8,23,42]) returns 2.

  2. Recursive evenSum(L) [10 pts]
    Without using iteration, write the recursive function evenSum(L) which given a possibly-empty list L of integers, returns the sum of the even integers in L. Do not create a new list. You cannot use the builtin function sum of lists. Return 0 if the list has no even integers in it. So, evenSum([5,8,23,42]) returns 50.

  3. Recursive evensOnly(L) [10 pts]
    Without using iteration, write the recursive function evensOnly(L) which given a possibly-empty list L of integers, returns a new list containing only the even integers in L in the same order they appear in L. So, evensOnly([5,8,23,42]) returns [8, 42].

  4. Recursive maxEven(L) [10 pts]
    Without using iteration, write the recursive function maxEven(L) which given a possibly-empty list L of integers, returns the largest even integer in L, or None if L does not contain any even integers. So, maxEven([5,8,23,42]) returns 42. You can't use the builtin function max.

  5. Recursive capitalizeWords(wordList) [10 pts]
    Write a recursive function that takes a list of words and returns a list that contains all the words capitalized. For example,
    assert(capitalizeWords(['foo', 'bar', 'world', 'hello']) == ['FOO', 'BAR', 'WORLD', 'HELLO'])
    Your solution should not use any loops; you must solve the problem using recursion.

  6. Recursive onlyEvenDigits(L) [15 pts]
    Without using iteration and without using strings, write the recursive function onlyEvenDigits(L), that takes a list L of non-negative integers (you may assume that), and returns a new list of the same numbers only without their odd digits (if that leaves no digits, then replace the number with 0). So: onlyEvenDigits([43, 23265, 17, 58344]) returns [4, 226, 0, 844]. Also the function returns the empty list if the original list is empty. Remember to not use strings. You may not use loops/iteration in this problem.

    Hint: We wrote a recursive helper function onlyEvens(n) that takes an integer n and returns the same integer but with all the odd digits removed. So onlyEvens(1234) returns 24.

  7. Recursive alternatingSum(L) [15 pts]
    Write the function alternatingSum(L) that takes a possibly-empty list of numbers, L, and returns the alternating sum of the list, where every other value is subtracted rather than added. For example: alternatingSum([1,2,3,4,5]) returns 1-2+3-4+5 (that is, 3). If lst is empty, return 0.

  8. Recursive drawFractalHTree() [20 pts] [manually graded]
    Write a program that draws a fractal H-tree. Our fractal H-tree is composed of a line of length d, and 2 smaller lines of length d divided by √2 originating from each end point. The end points of each of the smaller lines are also the origin of a recursively downsized fractal h-tree with length equal to half of the length of the h-tree at the previous level. The width of the lines should gradually decrease as well (make reasonable choices). Your fractal h-tree will be generated by a function drawFractalHTree(canvas, xc, yc, d, color, level) which you will write. Your function will take as parameter a canvas to draw on, the (xc, yc) coordinates of the center of the h-tree, the length d of the horizontal line, a color, and an integer level representing the maximum depth of recursion of your fractal h-tree. The following picture shows a fractal h-tree with a maximum recursion depth of 2 with color blue.
    Fractal H-Tree with depth = 5
    The following picture shows a fractal h-tree with a maximum recursion depth of 6 with color blue.
    Fractal H-Tree with depth = 5