data structure

Sorting in DSA

What is Sorting in DSA? Sorting is a fundamental function in data structures and computer science. It is the process…

2 years ago

DSA: Modular Arithmetic

What is Modular Arithmetic in DSA? Modular arithmetic is an arithmetic structure for integers, in which numbers "wrap around" when…

2 years ago

Problems based on bit manipulation

In the previous topic, we got an introduction to Bit Manipulation in DSA. Let us now look at some examples…

2 years ago

DSA: Sliding Window Technique

What is the Sliding Window Technique? The Window Sliding Technique is a technique for reducing the time complexity of algorithms…

2 years ago

DSA: 2D Array

What is a 2D Array? A 2D matrix is a two-dimensional array that contains rows and columns in data structures…

2 years ago

DSA: SubArray

What is a SubArray? A subarray is a sequence of elements within an array that is contiguous. In other words,…

2 years ago

Array Carry Forward

What is Carry Forward? The word "carry forward" does not refer to a specific idea in data structures and algorithms.…

2 years ago

DSA: Concept of Array

A group of related data elements stored at adjacent memory locations is referred to as an array. One of the…

2 years ago

Introduction to Singly Linked List

Singly Linked List Singly Linked List is a linear and connected data structure made of Nodes. Each node is composed…

3 years ago

CSV FILE FORMAT

A comma-separated values (CSV) file is a delimited text file that uses a comma to separate values. Each line of…

3 years ago