I have N numbers in arraylist. To get the indexOf
, arraylist will have to iterate maximum N times, so complexity is O(N)
, is that correct?
When we search any value in ArrayList or LinkedList, we have to iterate through all elements. This operation has O(N) time complexity.
indexOf() – also runs in linear time. It iterates through the internal array and checks each element one by one, so the time complexity for this operation always requires O(n) time.
The index of a particular element in an ArrayList can be obtained by using the method java. util. ArrayList. indexOf().
Source Java API
Yes,Complexity is O(N).
The size, isEmpty, get, set, iterator, and listIterator operations run in constant time. The add operation runs in amortized constant time, that is, adding n elements requires O(n) time. All of the other operations run in linear time (roughly speaking). The constant factor is low compared to that for the LinkedList implementation.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With