/* File: testLists.java * Author: Yanni Giftakis * Date: July 17, 2004 * * Purpose: This program tests the class List and its derived * classes IntegerList and SortedList. * * Tests valid the methods of each class and that the data * is contained apporpriately. * * See the definitions for each class to see the full function of * each member method. * * Rather than try and have all the output appear on a single screen, * all program results are sent to a text file (see below for file name). * */ import java.io.*; // for file I/O public class testLists { public static void main( String[] args) throws IOException { System.out.println ("Test program output sent to testLists.txt. \n"+ "Open the file with Wordpad or Word to examine output."); // open a standard output text file PrintWriter out = new PrintWriter ( new FileOutputStream ("testLists.txt") ); List listA = new List(), listB = new List(); double value1, value2; IntegerList intlistA = new IntegerList(), intlistB = new IntegerList(); int valueint1, valueint2; SortedList sortlistA = new SortedList(), sortlistB = new SortedList(), sortlistC; // will become a copy of sortlist B SortedList list = new SortedList(); // new list, def. set to ascending double tvalue = 0.0; // temp. value used for cut //-------------------------------------------------------------- //-------- out.println ("\nGenerating 5 random values and storing in lists."); for (int i=1; i<=5; i++) { value1 = Math.random()*50; // calculate a random value: 0 to 49 listA.add(value1); // add to basic list (List) intlistA.add(value1); // add to integer list sortlistA.add(value1); // add to sorted list value2 = Math.random()*50; // another random value listB.add(value2); // add to basic list (List) intlistB.add(value2); // add to integer list sortlistB.add(value2); // add to sorted list } //-------- out.println ("\nDisplay of lists: .toString()."); out.println("Basic list (tot: "+listA.total()+") :"+listA); out.println("Int list (tot: "+intlistA.total()+") :"+intlistA); out.println("Sort list A(tot: "+sortlistA.total()+") :"+sortlistA); out.println("Sort list B(tot: "+sortlistB.total()+") :"+sortlistB); //-------- out.println ("\nDisplay of a int list: .get()."); for (int i=0; i-->