DSA

Pointers in DSA

What are pointers? Pointers are variables that are used to save the position of a value in memory. A memory…

1 year ago

Problems based on Pattern Matching

In the previous post, we discussed various pattern-matching algorithms, let us now see a few problems based on it. Given…

1 year ago

DSA: Strings Pattern Matching

What is Pattern Matching? Pattern matching is a fundamental problem in computer science that is employed in a wide range…

1 year ago

DSA: Binary Search

What is Searching? Searching is a fundamental process in computer science that is commonly used to locate certain items or…

1 year ago

DSA: Types of Tree

There are various varieties of trees that are often used in the context of Data Structures and Algorithms (DSA). Here…

1 year ago

DSA: Trees

What is Tree Data Structure? A tree data structure is made up of nodes that are connected via edges. The…

1 year ago

Problems based on Linked List

Let us see a few problems based on Linked List. Given a linked list of N nodes such that it may contain…

1 year ago

DSA: Linked List

What is a Linked List? A linked list is a linear data structure composed of nodes, each of which holds…

1 year ago

Recursion in DSA

What is Recursion? In computer science, recursion is a strong programming technique that is used in many algorithms and data…

1 year ago

DSA: Collision in Hashing

What is Collision in Hashing? In hashing, collisions occur when two or more keys yield the same hash value or…

1 year ago