Collections

Linked List

English

Overview

A list structure where elements are linked together by references to the next one.

Details

A data structure where each element (node) holds a reference to the next one. Insertion and removal are fast, but random access is a weak point.

More Programming terms