What is the time complexity for accessing an element in a linked list?

Arrays Linked Lists Questions



46 Short 80 Medium 67 Long Answer Questions Question Index

What is the time complexity for accessing an element in a linked list?

The time complexity for accessing an element in a linked list is O(n), where n is the number of elements in the linked list.