Tag: DSA
-
Data StructureDSA: Modular Arithmetic
What is Modular Arithmetic in DSA? Modular arithmetic is an arithmetic structure for integers, in which numbers “wrap around” when…
April 23, 2023
-
Data StructureProblems based on bit manipulation
In the previous topic, we got an introduction to Bit Manipulation in DSA. Let us now look at some examples…
April 18, 2023
-
Data StructureDSA: Sliding Window Technique
What is the Sliding Window Technique? The Window Sliding Technique is a technique for reducing the time complexity of algorithms…
April 17, 2023
-
Data StructureDSA: 2D Array
What is a 2D Array? A 2D matrix is a two-dimensional array that contains rows and columns in data structures…
April 15, 2023
-
Data StructureDSA: SubArray
What is a SubArray? A subarray is a sequence of elements within an array that is contiguous. In other words,…
April 12, 2023
-
Data StructureArray Carry Forward
What is Carry Forward? The word “carry forward” does not refer to a specific idea in data structures and algorithms….
April 12, 2023
-
Data StructurePrefix Sum in Arrays
What is Prefix Sum? Prefix Sum is a method for dealing with array manipulation challenges. It entails establishing an auxiliary…
April 10, 2023
-
Data StructureDSA: Concept of Array
A group of related data elements stored at adjacent memory locations is referred to as an array. One of the…
April 9, 2023
-
Data StructureTime Complexity
What is Time Complexity? Time complexity is a key concept in computer science, particularly in data structures and algorithms(DSA). It…
April 9, 2023
-
JavaJava LinkedList in Collection Framework
The Collection framework is found in java.util package includes Linked List. This class is an implementation of the LinkedList data…
July 24, 2022