KnowledgeBoat Logo

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:

  1. Insertion
  2. Deletion
  3. Searching
  4. Traversal
  5. Sorting
  6. Merging

Answered By

3 Likes


Related Questions