Objectives
-
Work with stack frames and implementing a recursion via iteration and stacks..
-
Set up
P5
and work on some of its three parts.
Work
-
Open
P5
in a separate tab. -
Download and install the starter jar file for P5 as described in the assignment.
-
Implement the
Frame
class. -
Test the
Frame
class via its main method. Feel free to add your own test code in the main method. -
Start working on the Stack class. Think about how to implement a
Stack
using anArrayList
.
Submission
To get credit for this recitation you must show that Frame.java
successfully executes the given main method. Also show the methods you wrote for the Stack class.