/* This is the driver to test the linked list ADT. So far it just * hard codes the data input to see if new methods to list are working correctly * Anne DeFrance * October 12, 2006 */ public class UseList5 { public static void main(String[] args) { List5 ourList = new List5(); ourList.Initialize(new String("*")); ourList.Insert(new String("zebra")); ourList.Insert(new String("fox")); ourList.Insert(new String("dog")); ourList.Insert(new String("cat")); ourList.Insert(new String("rat")); ourList.Insert(new String("bat")); System.out.println(ourList); } }