User loginNavigationTake FREE online C/C++ test now!Unix / Linux ProgrammingCode search made simpleYour feedback needed!As a webmaster of this site, I regard you as our most important critic and commentator. We value your opinion and want to know what we are doing right, what we could do better and any other words of wisdom you're willing to pass our way. It would be our greatest motivation which will help us in developing areas you would like to see in this site. We hope you will continue to encourage and support us in our future endeavors.
INDIA |
Basics of Data StructuresIntroduction to Data StructuresDefinition :The logical inter-relation between elementary data items is called as data structure. The basic data items include integers, bits, characters. Basically it deals with manipulation and organization of data, solving problems with computer involves data manipulation. But the data available will usually be in amorphous form. When different types of such data are related to each other, then we call it to be a data structure. D = { d , F , A } Where, AdvantagesThe major advantages of data structures are : Operation on Data StructuresThe operations that can be performed on data structures are : Destroy : This operation destroys the data structure and aids in the efficient use of memory. Selection : This operation is used to access data within a data structure. The form of selection depends on the type of data structure being accessed. Update : This operation changes or modifies the data in the data structure and it is an important property in selection operation. Types of Data StructuresLinear Data Structure : Stacks, Queues, Linked Lists, etc. Non-linear Data Structure : Trees, Graphs, etc.
|