In this assignment, you are given two ADT interfaces, and you will implement them according to their specifications.
Starting point
Download and extract these materials. Contained are:
- Driver.java, the provided driver program.
- Movie.java, the things that will be held by a MovieShelf
- SetFullException.java, an exception type
- SetInterface.java and MovieShelfInterface.java, interfaces which you will implement in
- Set.java and MovieShelf.java. These are the files you will modify.
Set
You will implement the Set class. It implements SetInterface. Read the doc comments for each method in SetInterface carefully. In addition to the interface methods, you will also need to make some constructors, as detailed below.
Never write an entire program before testing it. No one writes a correct program in one shot. Save often. Test early and test often. Read the sections of the textbook starting at Chapter 2.16.
Details of your Set implementation
- It will store its data in an array.
- It will be dynamic capacity (like we talked about in Lecture 3).
- The Set(int) constructor will initialize the array to the given capacity.
- It will check for an illegal capacity, and throw IllegalArgumentException in that case.
- The Set() constructor will initialize the array to a reasonable default capacity.
- Reusing methods/constructors is a great habit! See section D.10 of Carrano (page 877 in the 4th edition) for details.
- The Set(E[]) constructor will initialize the set to contain the items in the array.
- You will not make this array into the sets backing array. That violates encapsulation.
- The array may contain duplicates and nulls. You should ignore these instead of throwing an exception.
- Do not duplicate your effort. This is essentially just adding all the items in the array to the set.
- Although you are given SetFullException, your add method will never actually throw it.
- Since your implementation will dynamically resize its capacity, it can never be full.
MovieShelf
You will implement the MovieShelf class. It implements MovieShelfInterface. Again, read the doc comments in that file carefully.
You are writing code that uses your own code. We call this eating our own dogfood. Its kind of a gross term, but hey.
MovieShelf is a client of your Set. That is, it will have an instance of Set and use it to hold its data. This means you are creating this class via composition.
Details of your MovieShelf implementation
- It will store its data in a Set<Movie>.
- The MovieShelf() constructor will initialize that Set to be empty.
- The MovieShelf(Movie[]) constructor will initialize that Set with that array of Movies.
- A note on printAll(): you can use Set.toArray() to get the movies to print, but it is an array of Object. You will have to cast each item to a Movie to access its movie-specific getters.
Testing
We will be testing your code on the command line. You are welcome to use an IDE, but before submitting, please test that your Java files can be compiled and run on the command line without it.
You are given a simple driver program, but you should write your own driver as well to test your code more thoroughly. The driver provided does not test all the possible corner cases, and does not test Set directly.
Click here for an example of what the driver will output for a correct implementation.
DO NOT TURN IN CODE THAT DOES NOT COMPILE.
This is not acceptable in this class or in your following classes. Comment out the code that doesnt compile and put comments at the top of your Java files for the grader. You may receive some partial credit for such code.
Code that crashes may also receive partial credit.

![[Solved] CS0445 Project 1- Sets](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[Solved] CS0445 Project5-Trees solved](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
Reviews
There are no reviews yet.