vinesilikon.blogg.se

Sequential search
Sequential search




Should the content of the list change frequently, repeated re-organization may be more trouble than it is worth.Īs a result, even though in theory other search algorithms may be faster than linear search (for instance binary search), in practice even on medium-sized arrays (around 100 items or less) it might be infeasible to use anything else. For example, one may sort the list and use binary search, or build an efficient search data structure from it. When many values have to be searched in the same list, it often pays to pre-process the list in order to use a faster method. Linear search is usually very simple to implement, and is practical when the list has only a few elements, or when performing a single search in an un-ordered list. In particular, when the list items are arranged in order of decreasing probability, and these probabilities are geometrically distributed, the cost of linear search is only O(1).

sequential search

Therefore, if some values are much more likely to be searched than others, it is desirable to place them at the beginning of the list. The performance of linear search improves if the desired value is more likely to be near the beginning of the list than to its end. (for example, for n = 2 this is 1, corresponding to a single if-then-else construct).Įither way, asymptotically the worst-case cost and the expected cost of linear search are both O( n). If the value being sought occurs k times in the list, and all orderings of the list are equally likely, the expected number of comparisons is The worst case is when the value is not in the list (or occurs only once at the end of the list), in which case n comparisons are needed. Else, the search terminates unsuccessfully.įor a list with n items, the best case is when the value is equal to the first element of the list, in which case only one comparison is needed. If L i = T, the search terminates successfully return i.This variation requires a sentinel that is greater than the target. ≤ L n−1, the search can establish the absence of the target more quickly by concluding the search once L i exceeds the target. If the list is ordered such that L 0 ≤ L 1. Else, the search terminates unsuccessfully. If i The search will reach the sentinel if the target is not contained within the list. By adding an extra record L n to the list (a sentinel value) that equals the target, the second comparison can be eliminated until the end of the search, making the algorithm faster. The basic algorithm above makes two comparisons per iteration: one to check if L i equals T, and the other to check if i still points to a valid index of the list. Otherwise, the search terminates unsuccessfully. L n−1, and target value T, the following subroutine uses linear search to find the index of the target T in L. Given a list L of n elements with values or records L 0.

sequential search

If the algorithm reaches the end of the list, the search terminates unsuccessfully. Ī linear search sequentially checks each element of the list until it finds an element that matches the target value. Linear search is rarely practical because other search algorithms and schemes, such as the binary search algorithm and hash tables, allow significantly faster searching for all but short lists. If each element is equally likely to be searched, then linear search has an average case of n+1 / 2 comparisons, but the average case can be affected if the search probabilities for each element vary. Ī linear search runs in at worst linear time and makes at most n comparisons, where n is the length of the list. It sequentially checks each element of the list until a match is found or the whole list has been searched. In computer science, a linear search or sequential search is a method for finding an element within a list. ( Learn how and when to remove this template message) Please help improve this article by introducing citations to additional sources. Relevant discussion may be found on the talk page. This article relies largely or entirely on a single source.






Sequential search