Computer Science
What is a linear list data structure ? Name some operations that you can perform on linear lists.
Linear Lists
1 Like
Answer
A linear list data structure is a list of finite number of data elements of the same data type arranged in a sequential manner under one name. The operations that we can perform on linear lists are as follows:
- Insertion
- Deletion
- Searching
- Traversal
- Sorting
- Merging
Answered By
3 Likes