How long work collection’s method or complexity

16. марта 2017 JAVA 0

Get

Method Array ArrayList LinkedList
Get O(1) O(1) O(N)
Set by index O(1) O(1) O(N)
Remove first O(N) O(1)
Remove after O(1) O(N) O(1)
Add first O(N) O(N) O(1)