A Linear data structure has data elements arranged in a sequential manner, and each element is connected to its previous and next element. Such data structures are easy to implement as computer memory is also sequential.
The examples of the linear data structure are Lists, Queue, Stack, Array, etc.