I asked in another question why arraylist seemed faster than linkedlist when reading a file and to create the lists. I've now tried adding to the front of the list or the back of the list. Arraylist was still faster.
i just want to make sure i'm using these things right. here's what i'm doing:
public class LinkedListTest {
private List<String> Names;
public LinkedListTest(){
Names = new LinkedList<String>();
}
Then I just using linkedlist methods ie "Names.add(strings)". And when I tested arraylists, it's nearly identical:
public class ArrayListTest {
private List<String> Names;
public ArrayListTest(){
Names = new ArrayList<String>();
}
Am I doing it right? In fact, changing the list type in the constructor method from ArrayList to LinkedList was pretty much the ONLY change I made in the code when comparing the speeds. Is that the right way to go about it?
EDIT: Oh, and I just do System.currentTimeMillis() before and after the add function to measure time.