Software Development

Tell me everything you know about Linked Lists

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

Answer

  • A linked list is a data structure
    • It consists of a collection of nodes. Together these nodes represent a sequence
    • Useful for use cases where you need to insert or remove an element from any position of the linked list
    • Some programming languages don't have linked lists as a built-in data type (like Python for example) but it can be easily implemented