Linked List
In a Linked List, the search operation takes time, while adding, deleting, or extracting items at the start or end point can be done in 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