example of linear and non-linear data structures?
Answer Posted / sneha rajput
A data structure is classified into two categories: Linear and Non-Linear data structures. A data structure is said to be linear if the elements form a sequence, for example Array, Linked list, queue etc. Elements in a nonlinear data structure do not form a sequence, for example Tree, Hash tree, Binary tree, etc.
There are two ways of representing linear data structures in memory. One way is to have the linear relationship between the elements by means of sequential memory locations. Such linear structures are called arrays. The other way is to have the linear relationship between the elements represented by means of links. Such linear data structures are called linked list.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How does shell sort work?
What is data in computer science?
What is binary tree used for?
What is difference between hashmap and arraylist?
Define hashing?
How does sort function work?
Can value be null in treemap?
Which method will arrange the element of an array in alphabetical order?
What is stack explain with diagram?
Can we define the size of arraylist?
Which sorting algorithm is used in collections sort?
What is bubble sort?
Can arraylist store int?
Mention the steps to insert data at the starting of a singly linked list?
What is the main advantage of a linked list?