DATA STRUCTURE------
DATA STRUCTURE OPERATIONS----
===> The data appearing in our data structures are processed by means of certain operations. In fact, the particular data structure that one chooses for a given situation depends largely on the frequency with which specific operations are performed.
TRAVERSING----
>> Accessing each record exactly once so that certain items in the record maybe processed. (This accessing and processing is sometimes called "visiting" the record)
SEARCHING----
>> Finding the location of the record with a given key value, or finding the locations of all records which satisfy one or more conditions.
INSERTING----
>> Adding a new record to the structure
DELETING ----
>> : Removing a record from the structure
SORTING----
>> Arranging the records in some logical order
MERGING----
>> Combining the records of two different sorted files into a single sorted file
Jump to Page : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53