Lists are commonly used to organize items and can also be implemented in computer programs. A list abstract data type (ADT) defines lists as ordered sequences of elements with no fixed length limit. Key operations for lists include appending, inserting, removing, and accessing elements by position. The List ADT defines the basic properties and allowed operations for lists without specifying an implementation.
Related topics: