Introduction to Data structures

DATA STRUCTURES

It is regarding the storage and retrieval of data from arrays or any type of data storages. It is one of the most fundamental subject in computer science. It is used for building efficient programs and software. It is mainly a way to search and retrieve data in different ways and also a way to store data in a computer.

In Other Words:

In computer Science, a data structure is a data organization management and storage format that enables the efficient access and modification for the dat

Some basic points to be noted:

Arrays

An array is a collection of elements of the same type placed contagious memory locations that can be individually referenced by using an index to a unique identifier.

int main()
{
    int a[4] = {1,2,3,4};

    //This is an array data structure.
}

What is a data type:

???

User Defined Data Types: