Recent Post

Operation of Data Structure

Search:- Finding the location of the desired node with a given key value , or finding the locations of all such nodes which satisfy on or more conditions.

Insert :- Adding a new node / record to the structure.

Delete:- Removing a node/record/item/from the structure.

Traversing:- Accessing each record/node/item exactly once so that contain items in the record way be processed.(This accessing and processing is sometimes called visiting the record).

Sort:- Arranging the items in ascending or descending order.

Update:- Update an existing item/node/record with a new value.

Append:- Add  item/node/record with a new value at the end.

No comments