I am making a class ListType which implements GenericList class. The findMax, findMin, and printAll methods were added by me to the ListType. I believe that the problem is between the Comparable which I extended and the list=(E[])(new Object[cap]).
import java.util.*;
import java.io.*;
public class ListType<E extends Comparable<E>> implements GeneralList<E>
{
private final int default_cap = 10;
private final int resize_fac = 2;
private E[] list;
private int numElements;
public ListType()
{
list = (E[])(new Object[default_cap]);
numElements = 0;
}
public ListType(int cap)
{
if (cap < 1)
throw new IllegalArgumentException();
list = (E[])(new Object[cap]);
numElements = 0;
}
public void add(E element)
{
if (numElements == list.length)
resize();
list[numElements] = element;
numElements++;
}
public void add(int index, E element)
{
if (index > numElements || index < 0)
throw new IndexOutOfBoundsException();
if (numElements == list.length)
resize();
for (int i = numElements; i > index; i--)
list[i] = list[i - 1];
list[index] = element;
numElements++;
}
public void clear()
{
for (int i = 0; i<list.length; i++)
list[i] = null;
numElements = 0;
}
public boolean contains(E element)
{
int index = 0;
boolean found = false;
while (!found && index < numElements)
{
if (list[index].equals(element))
found = true;
index++;
}
return found;
}
public E get(int index)
{
if (index >= numElements || index < 0)
throw new IndexOutOfBoundsException();
return list[index];
}
public int indexOf(E element)
{
int index = 0;
boolean found = false;
while (!found && index < numElements)
{
if (list[index].equals(element))
found = true;
else
index++;
}
if (!found)
index = -1;
return index;
}
public boolean isEmpty()
{
return (numElements == 0);
}
public boolean remove(E element)
{
int index = 0;
boolean found = false;
while (!found && index < numElements)
{
if (list[index].equals(element))
{
list[index] = null;
found = true;
}
index++;
}
if (found)
{
while(index < numElements)
{
list[index - 1] = list[index];
index++;
}
numElements--;
}
return found;
}
public E remove(int index)
{
if (index >= numElements || index < 0)
throw new IndexOutOfBoundsException();
E temp = list[index];
list[index] = null;
index++;
while(index < numElements)
{
list[index - 1] = list[index];
index++;
}
numElements--;
return temp;
}
private void resize()
{
int newLength = list.length * resize_fac;
E[] tempList = (E[])(new Object[newLength]);
for (int index = 0; index < numElements; index++)
tempList[index] = list[index];
list = tempList;
}
public E set(int index, E element)
{
if (index >= numElements || index < 0)
throw new IndexOutOfBoundsException();
E temp = list[index];
list[index] = element;
return temp;
}
public int size()
{
return numElements;
}
public String[] toStringArray()
{
String[] strArray = new String[numElements];
for (int index = 0; index < numElements; index++)
strArray[index] = list[index].toString();
return strArray;
}
//This method will find the minimum element using the Comparable implemented
public E findMin()
{
E min = list[0];
for(int i=1; i<list.length; i++)
{
if(min.compareTo(list[i]) > 0)
min = list[i];
}
return min;
}
//This method will find the maximium element using the Comparable implemented
public E findMax()
{
E max = list[0];
for(int i=1; i<list.length; i++)
{
if(max.compareTo(list[i]) < 0)
max = list[i];
}
return max;
}
//This method print all the elements in the list simply using the for.
public void printAll()
{
for(int i=0; i<list.length; i++)
System.out.print(list[i] + " ");
}
//This is the main class which executes the program
public static void main(String[] args) throws IOException{
//This will read the elements from the file.
File file = new File("document.txt");
Scanner inputFile = new Scanner(file);
String line1 = inputFile.nextLine();
String[] arrayLine = line1.split(" ");
//This will create the list of the class above.
ListType<Double> numbers = new ListType<Double>();
for(int i=0; i<numbers.size(); i++){
numbers.add(Double.parseDouble(arrayLine[i]));
}
System.out.println("The following elements in the file are: ");
numbers.printAll();
System.out.println(" ");
System.out.println("The minimium element in the file is " + numbers.findMin());
System.out.println(" ");
System.out.println("The maximium element in the file is " + numbers.findMax());
}
}