Data Structure Tutorials

data structure quiz 3

Data Structure Quiz with Answers

This quiz contains questions based on data structure and algorithm. These are a selected set of questions that will help you recall all the important concepts of data structures and algorithms. Let’s start!!! Summary...

AVL tree in DS 0

AVL Tree in Data Structure

AVL tree is a specific type of binary search tree where the difference between heights of left and right subtrees is either 0 or 1 only for all nodes. It implements all properties of...

Fibonacci Series 0

Fibonacci Series

Fibonacci Series is one of the most intriguing series in mathematics. The numbers in series are called Fibonacci numbers. The first two numbers in the Fibonacci series are 0 and 1. For all next...

Tree data structure 0

Tree Data Structure

Tree, just like graph, is also a nonlinear data structure. The elements are not arranged in a sequential manner. In this article, we will learn about trees, different terminologies, types of trees, and their...

Graphs in Data Structure 0

Graphs in Data Structure

We use graphs very often in our daily life. Whether it’s going to the office from home or going to a movie with your friends. We use graphs for finding the optimal solution to...