Timothy A. Budd, Data Structures in Java

Installation Instructions for Software for the Book:

Classic Data Structures in Java

by Timothy A. Budd

Published by Addison-Wesley Longman

These are courtesy of Ray Lischner, Tempest Software.

To work from home, download the compiled jar, for use when compiling your assignment. You need to tell the compiler about the jar file. Directions for various compilers are below:

When you use the jds package, remember to import the required classes and interfaces from the proper package, e.g.,

import java.util.Iterator;
import jds.Bag;
import jds.collection.Vector;
// your class declaration here ...