Tag Archives: linear search in array

Linear search program in Java

Linear search is one of the basic searching techniques used in programming. There are many other advanced techniques for searching, but to learn about searching we shoudl start with linear search. This technique is simple to learn, among all the … Continue reading

Posted in Java | Tagged , , , , , , , , , | Leave a comment

Linear Search Program in C++

In this tutorial we shall learn about searching elements present in the array.Generally two methods are being followed for searching.Those are: 1.Linear searching2.Binary searching .In this tutorial we shall learn about Linear searching. Method: 1.Get the data from the user … Continue reading

Posted in C++ | Tagged , , , , , , , , , | 2 Comments