0
13kviews
Distinguish between linear data structure and non-linear data structure.

Mumbai University > Information Technology > Sem 3 > Data Structure and Algorithm analysis

Marks: 2 M

Year: Dec 2014

1 Answer
0
59views
Lineardata structure Non-linear data structure
Data is arranged in linear sequence. Data is not arranged in sequence.
They are easy to implement in computer’s memory since they are organized sequentially. They are difficult to implement in computer’s memory since the data element can be attached to various other data elements.
Example: List, Stacks, Queue etc. Example: Tree, Graph etc.
Please log in to add an answer.