Comparison between Linear and Binary Search Algorithm
Before comparing let's learn what exactly is linear search and binary search algorithm Linear Search Algorithm An algorithm to find if a certain element exists in a given array or not. Linearly iterate the array to find the required element. It h...
