Linked List Access Complexity
A linked list does not support direct indexed addressing. To access the element at position k, the program must start at the head and follow next references until it reaches that position. In the worst case, this requires traversing the entire list.
Accessing the head is O(1).
Accessing an arbitrary position is O(n) in the worst case.
The average access cost is also linear for uniformly distributed positions.
Unlike arrays, linked lists do not support constant-time index calculation.