Assignment 12 - COP 3530, Fall 2007
Please read the assignment submission rules and the academic dishonesty page before you start work on this assignment. Failure to comply by these rules will cost a significant percentage of your assignment grade.
Make sure your classes are in the
package dataStructures. If you do not understand what packages are you
can read this
tutorial. If you have trouble with the classpath settings
you could try reading this
tutorial.
Unless stated otherwise, you are not allowed to use any classes from
the dataStructures or the java.util packages.
For any coding question below, even in cases where you may not use any
of the methods of the class you are extending, you MAY use the
constructor of the class to be extended when you create the constructor
of your new class. For example, you may do something like this:
public ALLExtended (){
super();
}
public ALLExtended( int n ){
super(n);
}

You are NOT allowed to call any method of the LinkedDigraph class. Calling one of these methods can cost up to 100% of the question grade.
The template is:
package dataStructures; |