Data Structures - Basics and Beyond
2. Stack
Stack is a linear data structure which follows the principle of LIFO(Last In First Out).
Read more3. Queue
Queue is a linear data structure which follows the principle of FIFO(First In First Out).
Read more4. LinkedList
It consists of nodes where each node contains data and reference to the next node in the list.
Read more5. Sorting & Searching
Searching for an element; Rearranging elements in a data structure to sort it.
Read more6. Trees
A non-linear data structure that represent hierarchical data arranged in multiple levels.
Read more