Hi, I am adding a whole bunch of elements to a list, then iterating through it once.
-no contains
-no delete
LinkedList is order(1) for add
where as ArrayList is worst case order(n) when doubling its size (assuming it starts from the initial size)
Why is ArrayList still slightly faster for me?
Thanks,
roland