Linked List

Home > Computer Science > Algorithms and data structures > Arrays > Linked List

A data structure where each element (node) contains a value and a pointer to the next element, allowing for efficient insertion and removal at any position.