Home / Questions / What are the various operations that can be performed on different Data Structures?
Explanatory Question

What are the various operations that can be performed on different Data Structures?

👁 14,494 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

  • Insertion: Add a new data item in the given collection of data items.
  • Deletion: Delete an existing data item from the given collection of data items.
  • Traversal: Access each data item exactly once so that it can be processed.
  • Searching: Find out the location of the data item if it exists in the given collection of data items.
  • Sorting: Arranging the data items in some order i.e. in ascending or descending order in case of numerical data and in dictionary order in case of alphanumeric data.