This Week's Worksheet ⬇️

mentor05.pdf

mentor05_sol.pdf

Related Tree Recursions Problems to Review

Steps for writing a tree recursion function

  1. Base case
  2. Recursive calls
  3. Combining recursive calls

** Tree recursions are often used to solve counting problems (hwo many ways are there of doing something?) and optimization problems (what is the maximum or minimum number of ways of doing something?)

Tree Recursion Practice