SearchingSearching is the process of finding some particular element in the list. If the element is present in the list, then the process is called successful and the process returns the location of that element, otherwise the search is called unsuccessful. There are two popular search methods that are widely used in order to search some item into the list. However, choice of the algorithm depends upon the arrangement of the list.
Linear SearchLinear search is the simplest search algorithm and often called sequential search. In this type of searching, we simply traverse the list completely and match each element of the list with the item whose location is to be found. If the match found then location of the item is returned otherwise the algorithm return NULL. Linear search is mostly used to search an unordered list in which the items are not sorted. The algorithm of linear search is given as follows. Algorithm
Complexity of algorithm
C ProgramOutput: Enter Item which is to be searched 20 Item not found Enter Item which is to be searched 23 Item found at location 2 Java ProgramOutput: Enter Item ? 23 Item found at location 2 Enter Item ? 22 Item not found C# ProgramOutput: Enter the item value 78 Item Found at Location 10 Enter the item value 22 Item not found Python ProgramOutput: Enter the item which you want to search 2 Item found at location 2 Enter the item which you want to search 101 Item not found
Next TopicBinary Search
|