Types Of Data Structures

Arrays

1

An array is the simplest and most widely used data structure. Other data structures like stacks and queues are derived from arrays.

Stacks

2

A real-life example of a Stack could be a pile of books placed in a vertical order. 

Queues

3

Like Stack, Queue is another linear data structure that stores the element sequentially.

Graphs

4

A graph is a set of nodes connected in the form of a network. Nodes are also called vertices.

Hash Table

5

Hashing is a process used to uniquely identify objects and store each object at some pre-calculated unique index called its “key.”