CS 206: Data Structures
Exercise#7
Due on Thursday, February 27
Implement the List ADT as dicussed in class using a fixed size array. Use it in your porgram from Exercise#6 (instead of the simple array of BankAccount). Functionally, your program will not change at all. The only changes will be in the use of the List ADT.
You may want to start organizing your class libraries (by now you have a library containing the classes: Name, BankAccount, SavingsAccount, CheckingAccount, ListInterface, AList1, etc.). Create a folder on your disk thta contains the .java files for all your classes. For each assignment, create a separate project that will contain the Applet and then add all the needed class files to it from the CS 206 Library. This way, you will end up with only one copy of each of the class files that will be used in many different projects.