Textbook:
Data Abstraction and Problem Solving with Java:
Walls and Mirrors: 2nd edition, Java 5.0
Carrano and Pritchard, 2006.
Commenting/Style/Discussion
Style counts!
Follow the good style conventions for code
elements, layout, and commenting. For advice
on Java style, investigate these resources:
Place a comment block at the top of each file
that you have created. The block must give the assignment
number, due date, and your name.
For example,
/**********************************
* Assignment 1: Welcome
* Date: 1/1/1111
*
* CPS 1231 - Fall 2007
* Amelia Earhart
**********************************/
Materials for Program #3:
List.java:
a generic implementation of a Linked List
ValidatedRetVal.java:
needed for List.java
Materials for Program #4:
CP2232.java::
a stack interface
Stack.java:
a generic implementation of Stack
|