#searching-algorithms
Read more stories on Hashnode
Articles with this tag
Searching is the process of finding a particular element in a collection of items, such as an array, list, or database. The goal of searching is to...
Hashing is a process used in computer science to convert input (like a string, number, or any other type of data) into a fixed-size string of bytes....
Linear search, also known as sequential search, is a method for finding a particular value in a list. It sequentially checks each element of the list...
Binary search is an efficient algorithm for finding a specific element in a sorted array or list. The key principle behind binary search is to divide...