0 votes
in Other by

What is linear data structure?

1 Answer

0 votes
by

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. 

...