Searching Algorithms
Linear search
Linear search
We often need to find one particular item
of data amongst many hundreds, thousands, millions or more. For example, you
might need to find someone’s phone number on your phone, or particular
business’s address in the UK.
This is why searching algorithms are
important. Without them you would have to look at each item of data – each
phone number or business address – individually, to see whether it is what you
are looking for. In a large set of data, it will take a long time to do this.
Instead, a searching algorithm can be used to help find the item of data you
are looking for.
Comments
Post a Comment