Category: Data Structure Tutorials

Linked list in DS

Linked List in Data Structure

There are broadly two types of Data structures: Linear and Non-linear. Linear data structures are those in which every element is connected to the previous element and the elements are present at a single...

Doubly linked list in DS

Doubly Linked List in Data Structure

Linked lists are a widely used data structure because of their wide range of applications. Linked lists are also of three types: 1. Singly linked list 2. Doubly linked list 3. Circular linked list...

Divide and Conquer Algorithm

Divide and Conquer Algorithm with Applications

1. As the name suggests, ‘Divide and Conquer is a strategy in which a given problem is split into a set of subproblems. 2. Each sub-problem is then handled/solved individually. 3. Once all the...

DS Asymptotic Analysis

Data Structures Asymptotic Analysis

In this article, we are going to learn about the concept of asymptotic analysis and various asymptotic notations used for the analysis of any algorithm. Defining asymptotic analysis Whenever we write an algorithm for...

Data Structure and Algorithm

Data Structure and Algorithm

This is an introductory article on algorithms in data structure. In this article, we are going to get a brief overview of algorithms, the role of algorithms in computing and the overview of majorly...