This page contains source code for the textbook Data Structures and Problem Solving Using Java, by Mark Allen Weiss (Addison-Wesley, 1998). |
Complete Bundle Updates Packages and Documentation Individual Chapters About This Bundle |
This is the code to accompany Data Structures and Problem Solving Using Java by Mark Allen Weiss These materials are copyrighted. The code uses constructs found in JDK 1.1 and some of it will not compile under JDK 1.0.2. After extracting the files, make sure to update your CLASSPATH to include the directory in which this code was extracted. This will allow packages (Exceptions, Supporting, and DataStructures) to be seen. Notes: Code that could not be placed in either DataStructures, Exception, or Supporting is in a directory for its particular chapter. It is my intention that all text code is somewhere. Some data files are present (for graphs and word search puzzle). Most data structures have a main included for testing. Stacks/queues don't, but Chapter06 has TestStack and TestQueue. Occasionally it seems that JDK 1.1 hangs when it is done reading input from the terminal, if there is not a quick write to the terminal. Sounds like a bug in the virtual machine. The directories: DataStructures --> The core data structures Exceptions --> Some exception classes Supporting --> Little supporting stuff Documentation --> Complete class documentation for book All other stuff is in individual Chapter/Appendix directories.(go to top)