--- title: Data Structures --- ## Data Structures Data Structure is a way of collecting and organising data in such a way that we can perform operations on these data in an effective way. Data Structures is about rendering data elements in terms of some relationship, for better organization and storage. For example, we have data player's name "Virat" and age 26. Here "Virat" is of String data type and 26 is of integer data type. We can organize this data as a record like Player record. Now we can collect and store player's records in a file or database as a data structure. For example: "Dhoni" 30, "Gambhir" 31, "Sehwag" 33 In simple language, Data Structures are structures programmed to store ordered data, so that various operations can be performed on it easily. It represents the knowledge of data to be organized in memory. It should be designed and implemented in such a way that it reduces the complexity and increases the effieciency. In Computer memory i.e RAM, different data structures are created like stack, queue, linklist, heaps, etc according to the requirement of the program so to use the memory efficiently. #### More Information: * [Data Structures](http://www.studytonight.com/data-structures/introduction-to-data-structures) * [Geek for Geek](http://www.geeksforgeeks.org/data-structures/) * [Tutorials Point](https://www.tutorialspoint.com/data_structures_algorithms/data_structure_overview.htm) * [Data Structures](http://www.studytonight.com/data-structures/introduction-to-data-structures)