Linear Search: Searching Algorithm
Searching is a important task in computer programming and there are number of algorithms and techniques to search any element in array. I am going to discuss linear search in this blog. In linear search we compare our target element with every element of array. The program will stop when element is equal to our … Read more