Logic gate: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Jim1138
m Reverted edits by 27.251.171.250 (talk) editing tests or vandalism (HG)
 
en>Glrx
Undid revision 593714241 by 112.207.33.32 (talk)
Line 1: Line 1:
Within this day and age of [http://en.search.wordpress.com/?q=fast-paced fast-paced] living, it is significantly impo... <br><br>
{{Multiple issues|refimprove=November 2010|one source=November 2010}}
In [[computer science]], '''linear search''' or '''sequential search''' is a method for finding a particular value in a [[list (computing)|list]], that consists of checking every one of its elements, one at a time and in sequence, until the desired one is found.<ref name="knuth"/>


Coral calcium is the most highly dissolvable and quickly assimilated forms of calcium (long know to be very important in bone health) naturally occurring in the sphere of the earth. Long used by holistic and alternative health professionals and experts such as chiropractors, naturopaths and acupuncturists, coral calcium is currently considered to be an important complement to healthful and normal living. <br><br>In this day and age of fast-paced living, it is increasingly essential to take care of the sole human anatomy we will ever have. We are a highly complex system of checks and balances and the only way that we may do at our highest degree of efficiency is to ensure that all of our biomechanics are managed and enhanced. Barrier calcium helps manage the alkalinity of our bodies ensuring that cell health is preserved by controlling the acid that we introduce into ourselves by being exposed to environmental and consumed contaminants. By maintaining an alkaline environment inside our bodies, we are ensuring continued health and longevity of our areas, both skeletal and muscular. <br><br>Long used in Japanese culture to promote health and longevity, coral calcium is manufactured from surface coral which means that no living coral is endangered in the building with this healthy product. We&quot;re all becoming increasingly concerned with not just the health of our own bodies, but with the typical health of the planet, specially marine life. Not merely does coral calcium help promote our personal health, it in no way harms marine life as it is gathered from nonliving, above-ground coral. <br><br>In the time we start walking, we strike our bodies with our daily challenges, bad diets, atmospheric pollutants, regular activities and general abuse. Barrier calcium helps you to change these injuries by promoting removal of waste and harmful toxins from your body. By providing extremely absorbable sources of calcium and other essential minerals, coral calcium helps the body restore itself to optimal degrees of health and happiness. <br><br>Density and bone strength is an increasing number of men and large problem for many women. This disturbing [http://marketides.com/2014/08/an-instant-comparison-of-conventional-medicines-and-alternative-medicines/ palmdale chiropractor] paper has limitless riveting tips for the inner workings of this view. The foods we eat, the beverages that we eat and the routines that we lead usually drain our systems of the nutrients that we have to support our rising structures. Osteoporosis is definitely an alarming epidemic and is a thing that we all must be conscious of. Coral Calcium is composed of the a very similar structure and combination of minerals our own bone structure consists of. Hence it promotes healing and power of the very frame of our bodies the we have spent our lives deteriorating. Should people claim to learn more about [http://pills-info.info/2014/08/18/coral-calcium-promoting-lifes-healing-properties/ details], there are millions of on-line databases you might pursue. <br><br>The best section of barrier calcium is that it&quot;s 100% natural and doesnt contain any of the frightening synthetic ingredients that many products contain that got us into our weakened position within the first place. By following the advice of many natural healers and promoting your diet with barrier calcium, you are helping the body heal itself with the nutrients it is made up of. An exceptional source of calcium and magnesium, coral calcium is proving to be yet another supplement to a healthy diet..AV Chiropractic Health Center<br>44820 10th St West<br>Lancaster, CA  93534<br>(661) 940-6302<br><br>If you loved this article and you simply would like to collect more info concerning [http://righteouspraise67.wordpress.com health dictionary] generously visit our own web-site.
Linear search is the simplest [[search algorithm]]; it is a special case of [[brute-force search]].  Its [[worst-case complexity|worst case cost]] is proportional to the number of elements in the list; and so is its [[average-case complexity|expected cost]], if all list elements are equally likely to be searched for. Therefore, if the list has more than a few elements, other methods (such as [[binary search]] or [[hash table|hashing]]) will be faster, but they also impose additional requirements.
 
==Analysis==
For 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. 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.
 
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
 
:<math>
\begin{cases}
  n                  & \mbox{if } k = 0 \\[5pt]
  \displaystyle\frac{n + 1}{k + 1} & \mbox{if } 1 \le k \le n.
\end{cases}
</math>
 
For example, if the value being sought occurs once in the list, and all orderings of the list are equally likely, the expected number of comparisons is <math>\frac{n + 1}2</math>. However, if it is ''known'' that it occurs once, then at most ''n'' - 1 comparisons are needed, and the expected number of comparisons is
:<math>\displaystyle\frac{(n + 2)(n-1)}{2n}</math>
 
(for example, for ''n'' = 2 this is 1, corresponding to a single if-then-else construct).
 
Either way, [[asymptotic complexity|asymptotically]] the worst-case cost and the expected cost of linear search are both [[big O notation|O]](''n'').
 
===Non-uniform probabilities===
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.  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.
 
In particular, when the list items are arranged in order of decreasing probability, and these probabilities are [[geometric distribution|geometrically distributed]], the cost of linear search is only O(1).  If the table size ''n'' is large enough, linear search will be faster than [[binary search]], whose cost is O(log ''n'').<ref name="knuth">
  {{cite book
  | first=Donald |last=Knuth |authorlink=Donald Knuth
  | series = The Art of Computer Programming
  | volume = 3 |title=Sorting and Searching
  | edition = 3rd
  | publisher = Addison-Wesley
  | year = 1997
  | isbn = 0-201-89685-0
  | chapter = Section 6.1: Sequential Searching,
  | pages = 396–408
  }}
</ref>
 
==Application==
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 unordered list.
 
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. For example, one may [[sort (computing)|sort]] the list and use binary search, or build any efficient [[search data structure]] from it. Should the content of the list change frequently, repeated re-organization may be more trouble than it is worth.
 
As 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. On larger arrays, it only makes sense to use other, faster search methods if the data is large enough, because the initial time to prepare (sort) the data is comparable to many linear searches <ref>{{Cite web |first=Adam |last=Horvath |url=http://blog.teamleadnet.com/2012/02/quicksort-binary-search-and-linear.html |title=Binary search and linear search performance on the .NET and Mono platform |accessdate=19 April 2013 |doi= }}</ref>
 
==Pseudocode==
===Forward iteration===
This [[pseudocode]] describes a typical variant of linear search, where the result of the search is supposed to be either the location of the list item where the desired value was found; or an invalid location ''Λ'', to indicate that the desired element does not occur in the list.
 
  For each item in the list:
      if that item has the desired value,
          stop the search and return the item's location.
  Return ''Λ''.
 
In this pseudocode, the last line is executed only after all list items have been examined with none matching.
 
If the list is stored as an [[array data structure]], the location may be the [[array index|index]] of the item found (usually between 1 and ''n'', or 0 and ''n''&minus;1).  In that case the invalid location ''Λ'' can be any index before the first element (such as 0 or &minus;1, respectively) or after the last one (''n''+1 or ''n'', respectively).  
 
If the list is a [[linked list|simply linked list]], then the item's location is its [[reference (computer science)|reference]], and ''Λ'' is usually the [[null pointer]].
 
===Recursive version===
 
Linear search can also be described as a [[recursion|recursive algorithm]]:
 
  LinearSearch(value, list)
    if the list is empty, return ''Λ'';
    else
      if the first item of the list has the desired value, return its location;
      else return LinearSearch(value, remainder of the list)
 
===Searching in reverse order===
Linear search in an array is usually programmed by stepping up an index variable until it reaches the last index. This normally requires two comparison [[instruction (computer science)|instruction]]s for each list item: one to check whether the index has reached the end of the array, and another one to check whether the item has the desired value. In many computers, one can reduce the work of the first comparison by scanning the items in reverse order.
 
Suppose an array ''A'' with elements indexed 1 to ''n'' is to be searched for a value ''x''. The following
pseudocode performs a forward search, returning ''n + 1'' if the value is not found:
 
  Set ''i'' to 1.
  Repeat this loop:
      If ''i'' > ''n'', then exit the loop.
      If ''A''[''i''] = ''x'', then exit the loop.
      Set ''i'' to ''i'' + 1.
  Return ''i''.
 
The following pseudocode searches the array in the reverse order, returning 0 when the element is not found:
 
  Set ''i'' to ''n''.
  Repeat this loop:
      If ''i'' ≤ 0, then exit the loop.
      If ''A''[''i''] = ''x'', then exit the loop.
      Set ''i'' to ''i'' &minus; 1.
  Return ''i''.
 
Most computers have a conditional [[branch instruction]] that tests the sign of a value in a register, or the sign of the result of the most recent arithmetic operation.  One can use that instruction, which is usually faster than a comparison against some arbitrary value (requiring a subtraction), to implement the command "If ''i'' ≤ 0, then exit the loop".
 
This optimization is easily implemented when programming in [[machine language|machine]] or [[assembly language]].  That branch instruction is not directly accessible in typical [[high-level programming languages]], although many [[compiler]]s will be able to perform that optimization on their own.
 
===Using a sentinel===
Another way to reduce the overhead is to eliminate all checking of the loop index. This can be done by inserting the desired item itself as a [[sentinel value]] at the far end of the list, as in this pseudocode:
 
  Set ''A''[''n + 1''] to ''x''.
  Set ''i'' to 1.
  Repeat this loop:
      If ''A''[''i''] = ''x'', then exit the loop.
      Set ''i'' to ''i'' + 1.
  Return ''i''.
 
With this stratagem, it is not necessary to check the value of ''i'' against the list length ''n'': even if ''x'' was not in ''A'' to begin with, the loop will terminate when ''i'' = ''n + 1''.  However this method is possible only if the array slot ''A''[''n + 1''] exists but is not being otherwise used. Similar arrangements could be made if the array were to be searched in reverse order, and element ''A(0)'' were available.
 
Although the effort avoided by these ploys is tiny, it is still a significant component of the overhead of performing each step of the search, which is small. Only if many elements are likely to be compared will it be worthwhile considering methods that make fewer comparisons but impose other requirements.
 
===Linear search on an ordered list===
For ordered lists that must be accessed sequentially, such as linked lists or files with variable-length records lacking an index, the average performance can be improved by giving up at the first element which is greater than the unmatched target value, rather than examining the entire list.  
 
If the list is stored as an ordered array, then binary search is almost always more efficient than linear search as with ''n'' > 8, say, unless there is some reason to suppose that most searches will be for the small elements near the start of the sorted list.
 
==See also==
*[[Ternary search]]
*[[Hash table]]
*[[Linear search problem]]
 
==References==
{{reflist}}
 
==External links==
 
{{DEFAULTSORT:Linear Search}}
[[Category:Search algorithms]]
[[Category:Articles with example pseudocode]]
[[Category:Articles with example Java code]]

Revision as of 01:53, 4 February 2014

Template:Multiple issues In computer science, linear search or sequential search is a method for finding a particular value in a list, that consists of checking every one of its elements, one at a time and in sequence, until the desired one is found.[1]

Linear search is the simplest search algorithm; it is a special case of brute-force search. Its worst case cost is proportional to the number of elements in the list; and so is its expected cost, if all list elements are equally likely to be searched for. Therefore, if the list has more than a few elements, other methods (such as binary search or hashing) will be faster, but they also impose additional requirements.

Analysis

For 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. 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.

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

For example, if the value being sought occurs once in the list, and all orderings of the list are equally likely, the expected number of comparisons is . However, if it is known that it occurs once, then at most n - 1 comparisons are needed, and the expected number of comparisons is

(for example, for n = 2 this is 1, corresponding to a single if-then-else construct).

Either way, asymptotically the worst-case cost and the expected cost of linear search are both O(n).

Non-uniform probabilities

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. 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.

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). If the table size n is large enough, linear search will be faster than binary search, whose cost is O(log n).[1]

Application

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 unordered list.

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. For example, one may sort the list and use binary search, or build any efficient search data structure from it. Should the content of the list change frequently, repeated re-organization may be more trouble than it is worth.

As 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. On larger arrays, it only makes sense to use other, faster search methods if the data is large enough, because the initial time to prepare (sort) the data is comparable to many linear searches [2]

Pseudocode

Forward iteration

This pseudocode describes a typical variant of linear search, where the result of the search is supposed to be either the location of the list item where the desired value was found; or an invalid location Λ, to indicate that the desired element does not occur in the list.

 For each item in the list:
     if that item has the desired value,
         stop the search and return the item's location.
 Return Λ.

In this pseudocode, the last line is executed only after all list items have been examined with none matching.

If the list is stored as an array data structure, the location may be the index of the item found (usually between 1 and n, or 0 and n−1). In that case the invalid location Λ can be any index before the first element (such as 0 or −1, respectively) or after the last one (n+1 or n, respectively).

If the list is a simply linked list, then the item's location is its reference, and Λ is usually the null pointer.

Recursive version

Linear search can also be described as a recursive algorithm:

 LinearSearch(value, list)
   if the list is empty, return Λ;
   else
     if the first item of the list has the desired value, return its location;
     else return LinearSearch(value, remainder of the list)

Searching in reverse order

Linear search in an array is usually programmed by stepping up an index variable until it reaches the last index. This normally requires two comparison instructions for each list item: one to check whether the index has reached the end of the array, and another one to check whether the item has the desired value. In many computers, one can reduce the work of the first comparison by scanning the items in reverse order.

Suppose an array A with elements indexed 1 to n is to be searched for a value x. The following pseudocode performs a forward search, returning n + 1 if the value is not found:

 Set i to 1.
 Repeat this loop:
     If i > n, then exit the loop.
     If A[i] = x, then exit the loop.
     Set i to i + 1.
 Return i.

The following pseudocode searches the array in the reverse order, returning 0 when the element is not found:

 Set i to n.
 Repeat this loop:
     If i ≤ 0, then exit the loop.
     If A[i] = x, then exit the loop.
     Set i to i − 1.
 Return i. 

Most computers have a conditional branch instruction that tests the sign of a value in a register, or the sign of the result of the most recent arithmetic operation. One can use that instruction, which is usually faster than a comparison against some arbitrary value (requiring a subtraction), to implement the command "If i ≤ 0, then exit the loop".

This optimization is easily implemented when programming in machine or assembly language. That branch instruction is not directly accessible in typical high-level programming languages, although many compilers will be able to perform that optimization on their own.

Using a sentinel

Another way to reduce the overhead is to eliminate all checking of the loop index. This can be done by inserting the desired item itself as a sentinel value at the far end of the list, as in this pseudocode:

 Set A[n + 1] to x. 
 Set i to 1.
 Repeat this loop:
     If A[i] = x, then exit the loop.
     Set i to i + 1.
 Return i.

With this stratagem, it is not necessary to check the value of i against the list length n: even if x was not in A to begin with, the loop will terminate when i = n + 1. However this method is possible only if the array slot A[n + 1] exists but is not being otherwise used. Similar arrangements could be made if the array were to be searched in reverse order, and element A(0) were available.

Although the effort avoided by these ploys is tiny, it is still a significant component of the overhead of performing each step of the search, which is small. Only if many elements are likely to be compared will it be worthwhile considering methods that make fewer comparisons but impose other requirements.

Linear search on an ordered list

For ordered lists that must be accessed sequentially, such as linked lists or files with variable-length records lacking an index, the average performance can be improved by giving up at the first element which is greater than the unmatched target value, rather than examining the entire list.

If the list is stored as an ordered array, then binary search is almost always more efficient than linear search as with n > 8, say, unless there is some reason to suppose that most searches will be for the small elements near the start of the sorted list.

See also

References

43 year old Petroleum Engineer Harry from Deep River, usually spends time with hobbies and interests like renting movies, property developers in singapore new condominium and vehicle racing. Constantly enjoys going to destinations like Camino Real de Tierra Adentro.

External links

  1. 1.0 1.1 20 year-old Real Estate Agent Rusty from Saint-Paul, has hobbies and interests which includes monopoly, property developers in singapore and poker. Will soon undertake a contiki trip that may include going to the Lower Valley of the Omo.

    My blog: http://www.primaboinca.com/view_profile.php?userid=5889534
  2. Template:Cite web