Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 521 Bytes

File metadata and controls

13 lines (9 loc) · 521 Bytes

Linked List

Linked List

The linked list is composed of node with one pointer to the next node, the last node is a NULL pointer.
The "linked list" object itself (The blue dot) is a pointer to the first node of the linked list.

Data Structure Operation Complexity

Condition Access Search Insertion Deletion
Average Θ(n) Θ(n) Θ(1) Θ(1)
Worst O(n) O(n) O(1) O(1)