welcome to this post.
Today I am going to talk about Searching Algorithms.
In this tutorial, I will cover 3 Searching Algorithms
Linear Search
Binary Search
Interpolation Search
So Let start with Linear Search
Linear Search:
From the name, you can get an idea. It searches linearly. One by one.
This algorithm starts the search from the beginning and continues until finding the
desired search index.
For example,
Assume an array from 0 to 10. and you are searching for10. so what will happen?
First,...
AndroidSketchpad
Imagine Learn And Apply