Okay...
public void reverse()
{
Object temp = new Object[INITIAL_CAPACITY];
for(int i = 0; i < size; ++i)
{
for(int j = size; j > 0; --j)
{
temp = data[i];
data[i] = data[j];
data[j] = temp;
}
}
}
this code does not reverse anything...I'm losing my mind here. I'm a non-trad student in a class with a bunch of hot shot kids...I'm afraid to speak up in class so I'm asking here.
Humble thanks for any assistance...
milhouse