DSA

DSA: Collision in Hashing

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

2 years ago

DSA: Hashing

What is Hashing? Hashing is a computer science technique for mapping arbitrary-size input to a fixed-size result. A Hash table…

2 years ago

Problems based on Strings

In the previous post, we got an introduction to Strings and their methods. Let us now take a look at…

2 years ago

DSA: Strings Concept

What is a String? A string is a character sequence in computer science. It's one of the most used data…

2 years ago

Bucket Sort

What is Bucket Sort? Bucket Sort is a sorting method that divides an array into tiny buckets before sorting the…

2 years ago

Heap Sort

What is Heap Sort? Heap sort is a sorting method that works by first constructing a binary heap from the…

2 years ago

Merge Sort

What is Merge Sort? Merge sort is a divide-and-conquer method that sorts an array by splitting it into half recursively…

2 years ago

Quick Sort

What is Quick Sort? Quick sort is a common sorting algorithm that sorts an array using the divide-and-conquer technique. Quick…

2 years ago

Insertion Sort

What is Insertion Sort? Insertion sort is a straightforward sorting algorithm that constructs the final sorted array one item at…

2 years ago

Selection Sort

What is Selection Sort? Selection sort is a sorting method that finds the smallest element in an unsorted region of…

2 years ago