Data Structures - Basics and Beyond

1. Arrays

An array is a collection of items stored at contiguous memory locations.

Read more

2. Stack

Stack is a linear data structure which follows the principle of LIFO(Last In First Out).

Read more

3. Queue

Queue is a linear data structure which follows the principle of FIFO(First In First Out).

Read more

4. LinkedList

It consists of nodes where each node contains data and reference to the next node in the list.

Read more

5. Sorting & Searching

Searching for an element; Rearranging elements in a data structure to sort it.

Read more

6. Trees

A non-linear data structure that represent hierarchical data arranged in multiple levels.

Read more

7. Graphs

A non-linear data structure consisting of nodes and edges used to solve real-life problems.

Read more

8. Hashing

It is a process of mapping keys, values into the hash table by using a hash function.

Read more