Ans-: The four major operations performed on data structure are:
(i) Insertion: Insertion means adding new details or new node into the data structure.
(ii) Deletion: Deletion means removing a node from the data structure.
(iii) Traversal: Traversing means accessing each node exactly once so that the nodes of a data structure
can be processed. Traversing is also called as visiting.
(iv) Searching: Searching means finding the location of node for a given key value.
Apart from the four operations mentioned above, there are two more operations occasionally performed on data structures. They are:
(v) Sorting: Sorting means arranging the data items in a particular order.
(vi) Merging: Merging means joining two lists
Tags
data structure