CSSE 230
Data Structures and Algorithm Analysis
Small Programming HW #1 - 20 points
To Be Turned In
Todo:
- Download TreePracticePart1.zip
project from the Small Programming HW 1 Moodle assignment
- Import TreePracticePart1.zip into Eclipse
- Complete the TODO items per the given
specifications found in the project
- Use the JUnit test scripts provided in the project for testing
- Upload to the Small Programming HW 1 Moodle assignment from your Eclipse project only the .java files that you changed
Note:
- The exercises found in this assignment are good practice for upcoming exams
Recall:
- The recursive pattern from
day 7 - see Slides
- Strategy as the recursive problems get more complicated: on some problems, you will want to communicate
information down the tree as you recurse, so you will find it
helpful to add a parameter to your recursive method
- You may also use
objects as return values to return multiple things up the tree