I found other entries for this question that dealt with specific methods, but nothing comprehensive. I'd like to verify my own understand of the most often used methods of this data structure:
O(1) - Constant Time
isEmpty()
add(x)
add(x, i)
set(x, i)
size()
get(i)
remove(i)
O(N) - Linear Time
indexof(x)
clear()
remove(x)
remove(i)
Is this correct? Thanks for your help
remove(i)is in both O(1) and O(N) – Bala R Jun 30 '11 at 20:12