Advertisement
akosiraff

homework-7

Apr 28th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1.  
  2. Download: https://solutionzip.com/downloads/homework-7/
  3. 1. (3 points) Exercise 9, page 205. Just write out the recursive method gcd; you aren’t
  4. required to write or run a test program.
  5. 2. (3 points) Exercise 17, page 209.
  6. 3. (4 points) Draw a recursion tree for the call binarySearch(5, 0, 8). Use the
  7. recursive version of the method found on p. 174 of your textbook.
  8. Label each node of the recursion tree with the indices of the subarray being searched
  9. (given by the parameters first and last). Assume the array values contains the
  10. following:
  11. [-2 1 3 5 7 12 18 20 23]
  12. 4. (2 points) How many total calls are made to binarySearch? What is the depth of
  13. recursion for this call? Here depth of recursion = longest path in the recursion tree.
  14. 5. (4 points) In class we saw two ways to formulate the choose function, one with two
  15. recursive calls, and another needing only one recursive calls. Write both versions (call
  16. them choose1 and choose2, for the number of recursive calls) as static methods in a
  17. class along with a main method for testing. For both, be sure to check the validity of the
  18. arguments and throw IllegalArgumentException if invalid. Your test will prompt
  19. the user for n and m and return the results of running both versions of choose.
  20. Record the results of testing your code with arguments (4,2) and (6,4). Then test them for
  21. (15,8) and (35,20). On some computers the last call may take several minutes. If any of
  22. your answers are negative, explain why.
  23. 6. (2 points) Java provides the primitive type long for integral computations which cannot
  24. be expressed using int. Long integers hold values from more than 92 quintillion to less
  25. than -92 quintillion. Rewrite each choose method so that it returns value of type long.
  26. Rerun each computation from the previous problem and record the results.
  27. 7. (2 points) How many total calls are made to choose2(6,4)? What is the depth of
  28. recursion for this call? Use a recursion tree to answer this question (extra credit for
  29. turning in a drawing of the tree).
  30. 8. (4 points) For each of the algorithms gcd, contains, binarySearch,
  31. and choose2, say if they are tail recursive or not.
  32. Download: https://solutionzip.com/downloads/homework-7/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement