Linked List

In a Linked List, the search operation takes O(n)O(n) time, while adding, deleting, or extracting items at the start or end point can be done in O(1)O(1) time. Moreover, the concept of bundling data into structures and linking them with pointers is utilized in various ways.

More to learn: https://realpython.com/linked-lists-python/

Last updated